/* General Styles */
body {
    font-family: Arial, sans-serif;
}

/* Header Styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 24px;
    color: #073D5F;
}

.nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: #52CDF9;
}

/* Button Styles */
.btn-gradient {
    background: linear-gradient(135deg, #52CDF9 0%, #073D5F 100%);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    opacity: 0.9;
    color: white;
}

.btn-link {
    color: #073D5F;
    text-decoration: none;
    font-weight: 500;
}

.btn-link:hover {
    color: #52CDF9;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to right, #073D5F, #052638);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.text-accent {
    color: #52CDF9;
}

.hero-buttons {
    margin-bottom: 30px;
}

.hero-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Privacy Section */
.privacy-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.privacy-content {
    padding-right: 50px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

.section-title .text-primary {
    color: #52CDF9 !important;
}

.section-description {
    font-size: 18px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 30px;
}

.privacy-image {
    position: relative;
    text-align: center;
}

.privacy-image img {
    max-width: 100%;
    height: auto;
}

/* Secure Section */
.secure-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.secure-content {
    padding-left: 50px;
}

.secure-image {
    position: relative;
    text-align: center;
}

.secure-image img {
    max-width: 100%;
    height: auto;
}

/* Complete Access Section */
.complete-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.complete-content {
    padding-right: 50px;
}

.complete-image {
    position: relative;
    text-align: center;
}

.complete-image img {
    max-width: 100%;
    height: auto;
}

.complete-cta {
    margin-top: 30px;
}

.complete-cta .btn-gradient {
    padding: 15px 30px;
    font-size: 18px;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: #ffffff;
}

.pricing-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 1px solid #e0e0e0;
}

.pricing-card.featured {
    border: 2px solid #52CDF9;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.best-offer {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #52CDF9;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.price {
    margin-bottom: 20px;
}

.price .amount {
    font-size: 42px;
    font-weight: bold;
    color: #073D5F;
}

.price .period {
    color: #666;
    font-size: 18px;
}

.btn-outline-primary {
    border: 2px solid #073D5F;
    color: #073D5F;
    background: transparent;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #073D5F;
    color: white;
}

.pricing-note {
    font-size: 14px;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.benefit-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 40px;
    height: 40px;
    color: #52CDF9;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #073D5F;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 16px;
}

/* Mobile VPN Section */
.mobile-vpn-section {
    padding: 100px 0;
    background: #ffffff;
}

.description-block {
    max-width: 900px;
    margin: 0 auto 60px;
}

.main-description {
    font-size: 18px;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.6;
}

.secondary-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.steps-intro {
    font-size: 18px;
    color: #333;
    margin-bottom: 40px;
    font-weight: 500;
}

.steps-container {
    margin-bottom: 40px;
}

.step-card {
    text-align: center;
    padding: 30px;
    transition: all 0.3s ease;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 60px;
    height: 60px;
}

.step-card h3 {
    font-size: 20px;
    color: #073D5F;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-card p {
    color: #666;
    font-size: 16px;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.accordion-button {
    padding: 20px 30px;
    font-size: 18px;
    font-weight: 500;
    color: #073D5F;
    background: white;
}

.accordion-button:not(.collapsed) {
    color: #073D5F;
    background: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23073D5F'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px 30px;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    background: white;
}

@media (max-width: 768px) {
    .accordion-button {
        font-size: 16px;
        padding: 15px 20px;
    }

    .accordion-body {
        padding: 15px 20px;
    }
}

@media (max-width: 768px) {
    .step-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 991px) {
    .complete-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
}

@media (max-width: 991px) {
    .secure-content {
        padding-left: 0;
        margin-top: 40px;
        text-align: center;
    }
    
    .secure-section .row {
        flex-direction: column-reverse;
    }
}

@media (max-width: 991px) {
    .privacy-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
}