/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: white;
    padding: 15px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-accept-btn {
    background: #4299e1;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.cookie-accept-btn:hover {
    background: #3182ce;
}

/* Header */
.header {
    background: white;
    color: #1e3a8a;
    padding: 60px 0;
    border-bottom: 8px solid #3b82f6;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo {
    flex: 1;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-image {
    height: 135px;
    width: 250px;
    object-fit: contain;
    background: transparent;
    image-rendering: crisp-edges;
    /* Clean logo without frame - looks natural on white background */
}

.logo-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e3a8a;
}

.logo-text p {
    font-size: 1.2rem;
    color: #4b5563;
    font-weight: 400;
}

/* Login Box */
.login-box {
    flex-shrink: 0;
}

.login-container {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 2px solid #3b82f6;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.login-container h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e3a8a;
}

.login-container p {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 15px;
}

.login-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.login-btn:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(59, 130, 246, 0.3);
}

/* Main content */
.main {
    padding: 80px 0;
}

/* Hero section */
.hero {
    text-align: center;
    margin-bottom: 60px;
}

.hero h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

/* Packages Preview Section */
.packages-preview {
    margin-bottom: 80px;
}

.packages-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.package-preview {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.package-preview:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.popular-preview {
    border-color: #10b981;
    background: linear-gradient(135deg, #fff 0%, #f0fdf4 100%);
    transform: scale(1.05);
}

.popular-preview:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-preview-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.preview-header {
    text-align: center;
    margin-bottom: 25px;
}

.preview-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.preview-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3b82f6;
}

.preview-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
}

.preview-highlights span {
    background: #eff6ff;
    color: #1e40af;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #bfdbfe;
}

.preview-btn {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.preview-btn:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(59, 130, 246, 0.3);
}

.show-all-packages {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    border: 2px dashed #cbd5e0;
}

.show-all-btn {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.show-all-btn:hover {
    background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(107, 114, 128, 0.3);
}

.show-all-packages p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

/* Services Description Section */
.services-description {
    background: #f8fafc;
    padding: 80px 0;
    margin-bottom: 80px;
}

.services-content h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 40px;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.experience-badge {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #3b82f6;
    min-width: 120px;
}

.experience-badge .year {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 5px;
}

.experience-badge p {
    font-size: 0.9rem;
    color: #4b5563;
    margin: 0;
    font-weight: 500;
}

.trust-text {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #10b981;
    max-width: 500px;
}

.trust-text p {
    margin: 0;
    font-size: 1.1rem;
    color: #374151;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    border-color: #4299e1;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4299e1, #667eea);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.service-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.service-item p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
}

/* Additional Services Section */
.additional-services {
    background: #f8fafc;
    padding: 80px 0;
    margin-bottom: 80px;
}

.additional-content h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.additional-item {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.additional-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.additional-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.additional-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.additional-item p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-additional {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid #48bb78;
}

.contact-additional h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 15px;
    text-align: center;
}

.contact-additional p {
    font-size: 1.1rem;
    color: #2d3748;
    margin: 0 0 20px 0;
    text-align: center;
}

.consultation-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.consultation-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(16, 185, 129, 0.3);
}

.contact-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    transform: translateY(-1px);
}

/* Domain Options */
.domain-options {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid #e2e8f0;
}

.domain-options .form-group {
    margin-bottom: 15px;
}

.domain-options label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.domain-options input[type="checkbox"] {
    margin-right: 12px;
    margin-top: 2px;
    transform: scale(1.2);
}

/* Modal subtitle */
.modal-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-style: italic;
}

/* Textarea styling */
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.2s;
}

textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Select styling */
select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
    cursor: pointer;
    transition: border-color 0.2s;
}

select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Packages grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Package cards */
.package {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    border-color: #4299e1;
}

.package.popular {
    border-color: #48bb78;
    transform: scale(1.05);
}

.package.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.package.premium {
    border-color: #ed8936;
    background: linear-gradient(135deg, #fff 0%, #fef5e7 100%);
}

/* Package badges */
.popular-badge,
.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ed8936;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Premium Features */
.premium-features {
    margin-bottom: 20px;
}

.premium-highlight {
    background: linear-gradient(135deg, #fef3cd 0%, #fed7aa 100%);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 15px;
    border: 2px solid #f59e0b;
}

.premium-highlight h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 5px;
}

.premium-highlight p {
    font-size: 0.9rem;
    color: #b45309;
    margin: 0;
}

.premium-feature {
    color: #ea580c !important;
    font-weight: 600 !important;
}

.premium-note {
    background: #fef3cd;
    color: #92400e;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 8px;
}

.popular-badge {
    background: #48bb78;
    color: white;
}

.premium-badge {
    background: #ed8936;
    color: white;
}

/* Package header */
.package-header {
    text-align: center;
    margin-bottom: 30px;
}

.package-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price .amount {
    font-size: 2rem;
    font-weight: 700;
    color: #4299e1;
}

.price .period {
    font-size: 1rem;
    color: #718096;
    font-weight: 500;
}

/* Package features */
.package-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.package-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #4a5568;
    font-size: 0.95rem;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

/* Order button */
.order-btn {
    width: 100%;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-btn:hover {
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(66, 153, 225, 0.3);
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.close:hover {
    color: #333;
    background-color: #f1f5f9;
}

.modal-content h2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 40px;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

/* Selected package info */
.selected-package {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 40px;
    text-align: center;
}

.selected-package h3 {
    color: #2d3748;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.selected-package .package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4299e1;
}

/* Form styles */
.order-form {
    padding: 0 40px 40px;
}

.form-section {
    margin-bottom: 40px;
}

.form-section h3 {
    color: #2d3748;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #4a5568;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
    background-color: white;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-help {
    display: block;
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 5px;
    font-style: italic;
}

.form-group input[type="radio"] {
    margin-right: 8px;
}

.form-group label:has(input[type="radio"]) {
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: normal;
}

.conditional-fields {
    margin-top: 20px;
    padding: 20px;
    background-color: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.domain-pricing {
    background: #edf2f7;
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
    font-size: 0.9rem;
}

.domain-pricing p {
    margin: 5px 0;
}

/* Checkbox styling */
.checkbox-group {
    margin: 30px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 12px;
    margin-top: 2px;
    transform: scale(1.2);
}

.checkbox-label a {
    color: #4299e1;
    text-decoration: none;
    font-weight: 500;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Payment info */
.payment-info {
    background: #f0fff4;
    border: 1px solid #9ae6b4;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    color: #276749;
}

.payment-info p {
    margin: 0;
    font-weight: 500;
}

/* Submit button */
.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 20px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(72, 187, 120, 0.3);
}

.submit-btn:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #e2e8f0;
    border-bottom: 2px solid #4299e1;
    padding-bottom: 8px;
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: #4299e1;
    text-decoration: underline;
}

/* ANPC Logos */
.anpc-logos {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
}

.anpc-logo {
    transition: transform 0.2s;
}

.anpc-logo:hover {
    transform: scale(1.05);
}

.anpc-logo img {
    max-height: 60px;
    width: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Contact Info */
.contact-info p {
    margin: 8px 0;
    color: #cbd5e0;
    font-size: 0.9rem;
}

.contact-info a {
    color: #4299e1;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info strong {
    color: #e2e8f0;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4a5568;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
    color: #cbd5e0;
}

.comparison-note {
    font-size: 0.85rem !important;
    color: rgba(203, 213, 224, 0.7) !important;
    font-style: italic;
    margin-bottom: 10px !important;
}

/* Anti-bot protection styles */
.anti-bot-section {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.anti-bot-question {
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 15px;
    font-size: 1rem;
}

.anti-bot-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.anti-bot-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.anti-bot-option:hover {
    transform: scale(1.05);
}

.anti-bot-option input[type="radio"] {
    display: none;
}

.anti-bot-checkbox {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 3px solid #d1d5db;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.anti-bot-option input[type="radio"]:checked+.anti-bot-checkbox {
    border-color: #1e3a8a;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(30, 58, 138, 0.3);
}

.anti-bot-option input[type="radio"]:checked+.anti-bot-checkbox::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 18px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.anti-bot-section .form-help {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .anti-bot-options {
        gap: 15px;
    }

    .anti-bot-checkbox {
        width: 35px;
        height: 35px;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Header responsive */
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .logo-container {
        flex-direction: column;
        gap: 15px;
    }

    .logo-image {
        height: 70px;
        width: 180px;
    }

    .logo-text h1 {
        font-size: 2.5rem;
    }

    .login-container {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }

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

    /* Services responsive */
    .services-content h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-item {
        padding: 30px 25px;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    /* Additional services responsive */
    .additional-content h2 {
        font-size: 1.8rem;
    }

    .additional-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .package {
        padding: 25px;
    }

    .package.popular {
        transform: none;
    }

    .package.popular:hover {
        transform: translateY(-5px);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .modal-content {
        width: 95%;
        margin: 5% auto;
    }

    .modal-content h2 {
        padding: 25px 20px;
        font-size: 1.5rem;
    }

    .order-form {
        padding: 0 20px 30px;
    }

    .selected-package {
        margin: 20px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cookie-content p {
        font-size: 13px;
    }

    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .anpc-logos {
        justify-content: center;
    }

    .anpc-logo img {
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .package-header h3 {
        font-size: 1.3rem;
    }

    .price .amount {
        font-size: 1.7rem;
    }

    .order-btn {
        font-size: 1rem;
        padding: 12px 25px;
    }

    .submit-btn {
        font-size: 1.1rem;
        padding: 15px 25px;
    }
}

/* Animation for smooth transitions */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.package {
    animation: fadeIn 0.6s ease forwards;
}

.package:nth-child(1) {
    animation-delay: 0.1s;
}

.package:nth-child(2) {
    animation-delay: 0.2s;
}

.package:nth-child(3) {
    animation-delay: 0.3s;
}

.package:nth-child(4) {
    animation-delay: 0.4s;
}

.package:nth-child(5) {
    animation-delay: 0.5s;
}

.package:nth-child(6) {
    animation-delay: 0.6s;
}

.package:nth-child(7) {
    animation-delay: 0.7s;
}

.package:nth-child(8) {
    animation-delay: 0.8s;
}

.package:nth-child(9) {
    animation-delay: 0.9s;
}