* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 123, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 123, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav {
    background: #1e3a8a;
    color: white;
    padding: 1rem 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
}

.hero {
    background: linear-gradient(135deg , #3b82f6 0%, #1e3a8a 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    background: white;
    color: #1e3a8a;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    font-weight: bold;
}

.features {
    padding: 4rem 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    border: 2px solid #3b82f6;
    border-radius: 10px;
}

.content {
    padding: 4rem 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    min-height: calc(100vh - 200px);
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin-top: 2rem;
}

input, textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

footer {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: white;
    padding: 1.5rem 0 1rem 0;
    margin-top: 0rem;
    border-top: 4px solid #3b82f6;
}

.footer-inner {
    width: 100%;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-column {
    flex: 1;
}

.footer-links {
    text-align: left;
}

.footer-copyright {
    text-align: right;
}

.footer-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.footer-list-item a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-list-item a:hover {
    transform: translateY(-2px);
}

.footer-copyright p {
    font-size: 0.95rem;
    opacity: 0.95;
    margin: 0;
}

footer nav {
    background: transparent;
    padding: 1rem 0;
    margin-bottom: 1rem;
}

footer nav .container {
    justify-content: center;
}

footer nav h1 {
    font-size: 1.2rem;
}

footer nav ul {
    gap: 1.5rem;
}

/* Responsive Mobile Styles */
@media (max-width: 768px) {
    nav .container {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        gap: 1rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    form {
        width: 100%;
    }
}

/* Phone Mockup Animation */
.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.phone-mockup {
    flex: 1;
    display: flex;
    justify-content: center;
}

.phone {
    width: 250px;
    height: 500px;
    background: #1f2937;
    border-radius: 30px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 30px;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Remove or update existing phone-screen styles */
.phone-screen h3,
.phone-screen .connect-btn,
.phone-screen p {
    display: none; /* Hide if using screenshot */
}

.phone-screen h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.connect-btn {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .phone {
        width: 200px;
        height: 400px;
    }
    
    .footer-row {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links,
    .footer-copyright {
        text-align: center;
    }
    
    .footer-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    footer {
        padding: 2rem 0 1.5rem 0;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-column {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-form-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
    outline: 2px solid white;
    background: white;
}

.contact-form-wrapper .btn {
    background: white;
    color: #1e3a8a;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.contact-form-wrapper .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-info-column {
    padding: 2rem 0;
}

.animated-title {
    margin-bottom: 1rem;
}

.dynamic-text {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-heading {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #1e3a8a;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #64748b;
    line-height: 1.6;
}

.contact-details a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #1e3a8a;
}

@media (max-width: 968px) {
    .contact-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-column {
        padding: 2rem;
    }
    
    .contact-heading {
        font-size: 2rem;
    }
}

/* Policy Page Styles */
.policy-content {
    max-width: 800px;
    line-height: 1.8;
}

.policy-content h3 {
    color: #1e3a8a;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.policy-content a {
    color: #3b82f6;
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Logo Image Styles */
.logo-img {
    height: 40px;
    width: auto;
    vertical-align: middle;
    margin-right: 0.5rem;
}

nav h1 {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .logo-img {
        height: 30px;
    }
}

/* Download Buttons Styles */
.download-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.store-btn img {
    height: 70px;
    width: auto;
    display: block;
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .download-buttons {
        justify-content: center;
    }
    
    .store-btn img {
        height: 55px;
    }
}

/* About VPN Section */
.about-vpn {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #e3f2fd 0%, #bbdefb 100%);
    position: relative;
    overflow: hidden;
}

.about-vpn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 30%, rgba(30, 58, 138, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.about-vpn .container {
    position: relative;
    z-index: 1;
}

.intro-text {
    background: rgba(255, 255, 255, 0.7);
    padding: 25px 30px;
    border-radius: 12px;
    border-left: 5px solid #1e3a8a;
    margin: 30px 0;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.1);
}

.intro-text p {
    color: #1e3a8a;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .animated-title {
    margin-bottom: 1rem;
}

.section-header .dynamic-text {
    background: linear-gradient(to bottom, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-heading {
    font-size: 2.5rem;
    color: #1e3a8a;
    font-weight: bold;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon .icon {
    font-size: 2rem;
    font-style: normal;
}

.feature-content h5 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
}

.features-title {
    text-align: center;
    color: #1e3a8a;
    font-size: 1.8rem;
    margin: 3rem 0 2rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .features-title {
        font-size: 1.4rem;
        padding: 0 1rem;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(to bottom,#bbdefb 0%, #e3f2fd 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.work-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.work-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border-left: 5px solid #007bff;
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 10px;
}

.step-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: inline-block;
}

.step-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.step-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.step-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #007bff, transparent);
    margin: 10px 0;
}

.work-description {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9ff 100%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 123, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.description-header {
    border-bottom: 2px solid #007bff;
    padding-bottom: 20px;
}

.description-header h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 8px;
}

.description-subtitle {
    color: #007bff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.description-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.protection-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.protection-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #333;
    padding: 10px;
    background: rgba(0, 123, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.protection-list li:hover {
    background: rgba(0, 123, 255, 0.1);
    transform: translateX(5px);
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.description-footer {
    display: flex;
    justify-content: flex-start;
}

.learn-more-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

@media (max-width: 768px) {
    .protection-list {
        grid-template-columns: 1fr;
    }
    
    .work-description {
        padding: 30px;
    }
}

/* Who Benefits Section */
.who-benefits {
    padding: 80px 0;
    background: linear-gradient(to bottom, #e3f2fd 0%, #bbdefb 100%);
    position: relative;
}

.who-benefits .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 123, 255, 0.05);
    position: relative;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 123, 255, 0.15);
}

.benefit-card-inner {
    padding: 35px 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.benefit-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 123, 255, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon-wrapper {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2), rgba(0, 123, 255, 0.1));
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon {
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.benefit-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.benefit-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 123, 255, 0.1);
}

.benefit-tag {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 123, 255, 0.05));
    color: #007bff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-tag {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .who-benefits {
        padding: 50px 0;
    }
    
    .benefit-card-inner {
        padding: 28px 22px;
    }
}


/* Disclaimer Section */
.disclaimer {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 123, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 123, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.disclaimer-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(0, 123, 255, 0.2);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.disclaimer-icon {
    font-size: 60px;
    flex-shrink: 0;
    animation: pulse-warning 2s ease-in-out infinite;
}

@keyframes pulse-warning {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.disclaimer-content {
    flex: 1;
}

.disclaimer-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.disclaimer-text {
    margin-bottom: 30px;
}

.disclaimer-text p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.disclaimer-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.disclaimer-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(0, 123, 255, 0.08);
    border-left: 4px solid #007bff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.disclaimer-point:hover {
    background: rgba(0, 123, 255, 0.15);
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
}

.point-icon {
    font-size: 20px;
    color: #007bff;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.point-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .disclaimer {
        padding: 50px 0;
    }
    
    .disclaimer-wrapper {
        flex-direction: column;
        gap: 25px;
        padding: 35px 25px;
    }
    
    .disclaimer-content h3 {
        font-size: 22px;
        letter-spacing: 1px;
    }
    
    .disclaimer-icon {
        font-size: 48px;
    }
    
    .disclaimer-points {
        gap: 12px;
    }
}