/* Base Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9fafb;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2563eb;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    display: none;
}

.nav-link {
    color: #4b5563;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #2563eb;
}

.cta-button {
    background-color: #2563eb;
    color: white;
    padding: 8px 20px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-menu-button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #4b5563;
}

.mobile-menu {
    background: #fff;
    padding: 1rem;
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 1000;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.mobile-menu.hidden {
    display: none;
}

.mobile-nav-link {
    display: block;
    padding: 10px 0;
    color: #4b5563;
    text-decoration: none;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-cta-button {
    display: block;
    margin-top: 10px;
    background-color: #2563eb;
    color: white;
    padding: 10px;
    border-radius: 9999px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                      url('frontpage.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #e5e7eb;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-button {
    background-color: #f59e0b;
    color: #1f2937;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.hero-button:hover {
    background-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Section Common Styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 15px;
}

.section-description {
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: white;
}

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

.service-card {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.blue-icon { color: #3b82f6; }
.green-icon { color: #10b981; }
.purple-icon { color: #8b5cf6; }
.red-icon { color: #ef4444; }
.indigo-icon { color: #6366f1; }
.yellow-icon { color: #f59e0b; }

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
}

.service-description {
    color: #6b7280;
    margin-bottom: 20px;
}

.service-link {
    font-weight: 600;
    text-decoration: none;
}

.blue-link { color: #3b82f6; }
.green-link { color: #10b981; }
.purple-link { color: #8b5cf6; }
.red-link { color: #ef4444; }
.indigo-link { color: #6366f1; }
.yellow-link { color: #f59e0b; }

.service-link:hover {
    text-decoration: underline;
}

/* Why Choose Us Section */
.why-us {
    padding: 80px 0;
    background-color: #f3f4f6;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
}

.feature-description {
    color: #6b7280;
}

/* About Us Section */
.about-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
  }
  
  .about-section .section-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .section-title {
    font-size: 2.2rem;
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 700;
  }
  
  .section-subtitle {
    color: #4b5563;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #2563eb;
  }
  
  .about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }
  
  .card-icon {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 20px;
  }
  
  .about-card h3 {
    font-size: 1.4rem;
    color: #1f2937;
    margin-bottom: 15px;
  }
  
  .about-card p {
    color: #4b5563;
    line-height: 1.6;
  }
  
  .benefits-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }
  
  .benefits-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
  }
  
  .benefits-list i {
    color: #10b981;
    position: absolute;
    left: 0;
    top: 10px;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .about-grid {
      grid-template-columns: 1fr;
    }
    
    .about-card {
      padding: 25px;
    }
    
    .section-title {
      font-size: 1.8rem;
    }
  }

/* Contact Form Styles */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0077cc;
    outline: none;
}

.submit-button {
    background-color: #0077cc;
    color: white;
    font-size: 16px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-button:hover {
    background-color: #005fa3;
}

/* Responsive tweaks */
@media (max-width: 600px) {
    .contact-form-container {
        padding: 20px;
    }

    .submit-button {
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-text {
    color: #9ca3af;
    margin-bottom: 10px;
}

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

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f59e0b;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: white;
    background-color: #374151;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: #f59e0b;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 5px 0;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
        align-items: center;
    }
    
    .mobile-menu-button {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-content {
        flex-direction: row;
    }
    
    .about-image {
        width: 50%;
        margin-bottom: 0;
        padding-right: 30px;
    }
    
    .about-text {
        width: 50%;
        padding-left: 30px;
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}
/* Additional Styles for Family Visas */
.pink-icon { color: #ec4899; }
.pink-link { color: #ec4899; }
.pink-link:hover { text-decoration: underline; }

.service-card .pink-icon {
    color: #ec4899;
}

.feature .pink-icon {
    color: #ec4899;
    font-size: 3rem;
    margin-bottom: 20px;
}


/* Subclass 500 Page Specific Styles */
.visa-overview {
    padding: 80px 0;
    background-color: white;
}

.overview-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.overview-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.overview-image img {
    width: 100%;
    height: auto;
    display: block;
}

.overview-text {
    width: 100%;
}

.benefits-list {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.benefits-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    line-height: 1.6;
}

.benefits-list li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.eligibility {
    padding: 80px 0;
    background-color: #f3f4f6;
}

.eligibility-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.criteria-card {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.criteria-title {
    color: #2563eb;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.process {
    padding: 80px 0;
    background-color: white;
}

.process-steps {
    margin-top: 40px;
    position: relative;
}

.process-steps:before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    height: 100%;
    width: 2px;
    background-color: #e5e7eb;
    z-index: 1;
}

.step {
    display: flex;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content {
    background-color: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    flex-grow: 1;
}

.step-content h3 {
    margin-top: 0;
    color: #1f2937;
}

.work-conditions {
    padding: 80px 0;
    background-color: #f3f4f6;
}

.work-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.work-text {
    width: 100%;
}

.work-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: auto;
    display: block;
}

.faq {
    padding: 80px 0;
    background-color: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.faq-item {
    background-color: #f9fafb;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-question {
    color: #2563eb;
    margin-top: 0;
}

.faq-answer {
    margin-bottom: 0;
}

.why-choose-us {
    padding: 80px 0;
    background-color: #f3f4f6;
}

.why-us-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.why-us-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.why-us-image img {
    width: 100%;
    height: auto;
    display: block;
}

.why-us-text {
    width: 100%;
}

.services-list {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.services-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
    line-height: 1.6;
}

.services-list li:last-child {
    border-bottom: none;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .overview-content {
        flex-direction: row;
    }
    
    .overview-image {
        width: 50%;
    }
    
    .overview-text {
        width: 50%;
        padding-left: 30px;
    }
    
    .eligibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .work-content {
        flex-direction: row;
    }
    
    .work-text {
        width: 50%;
        padding-right: 30px;
    }
    
    .work-image {
        width: 50%;
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-content {
        flex-direction: row;
    }
    
    .why-us-image {
        width: 40%;
    }
    
    .why-us-text {
        width: 60%;
        padding-left: 30px;
    }
}

@media (min-width: 1024px) {
    .eligibility-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Subclass 485 Page Specific Styles */
.streams {
    padding: 80px 0;
    background-color: white;
}

.streams-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.stream-card {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #2563eb;
}

.stream-title {
    color: #2563eb;
    margin-top: 0;
    margin-bottom: 15px;
}

.stream-details {
    padding-left: 20px;
    margin: 15px 0 0;
}

.stream-details li {
    margin-bottom: 8px;
}

.stream-details ul {
    padding-left: 20px;
    margin: 8px 0;
}

.recent-changes {
    margin-top: 40px;
    padding: 25px;
    background-color: #fff7ed;
    border-left: 4px solid #f59e0b;
    border-radius: 0 8px 8px 0;
}

.recent-changes h3 {
    margin-top: 0;
    color: #d97706;
}

.recent-changes ul {
    padding-left: 20px;
}

.recent-changes li {
    margin-bottom: 8px;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .streams-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .streams-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Visitor Visa Page Specific Styles */
.conditions {
    padding: 80px 0;
    background-color: #f3f4f6;
}

.conditions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.condition-card {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.condition-title {
    color: #2563eb;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.documents {
    padding: 80px 0;
    background-color: white;
}

.documents-list {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 8px;
}

.documents-list ul {
    columns: 1;
    padding-left: 20px;
}

.documents-list li {
    margin-bottom: 10px;
    break-inside: avoid;
}

.extension {
    padding: 80px 0;
    background-color: #f3f4f6;
}

.extension-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .documents-list ul {
        columns: 2;
    }
}

@media (min-width: 1024px) {
    .conditions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .documents-list ul {
        columns: 3;
    }
}

/* Protection Visa Page Specific Styles */
.benefits {
    padding: 80px 0;
    background-color: #f3f4f6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.benefit-card {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.benefit-title {
    margin: 0;
    font-size: 1.1rem;
    color: #1f2937;
}

.grounds {
    padding: 80px 0;
    background-color: white;
}

.grounds-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.grounds-text {
    width: 100%;
}

.grounds-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.grounds-image img {
    width: 100%;
    height: auto;
    display: block;
}

.grounds-list {
    padding-left: 20px;
}

.grounds-list li {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .grounds-content {
        flex-direction: row;
    }
    
    .grounds-text {
        width: 60%;
    }
    
    .grounds-image {
        width: 40%;
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Employer Sponsored Visa Page Specific Styles */
.visa-options {
    padding: 80px 0;
    background-color: white;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.option-card {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.option-image {
    height: 200px;
    overflow: hidden;
}

.option-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.option-card:hover .option-image img {
    transform: scale(1.05);
}

.option-content {
    padding: 25px;
}

.option-title {
    margin-top: 0;
    color: #1f2937;
}

.option-description {
    color: #6b7280;
    margin-bottom: 20px;
}

.option-link {
    color: #6366f1;
    font-weight: 600;
    text-decoration: none;
}

.option-link:hover {
    text-decoration: underline;
}

/* Regional Benefits */
.regional-benefits {
    padding: 80px 0;
    background-color: #f3f4f6;
}

.benefits-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.benefits-text {
    width: 100%;
}

.benefits-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.benefits-image img {
    width: 100%;
    height: auto;
    display: block;
}

.benefits-list {
    padding-left: 20px;
}

.benefits-list li {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-content {
        flex-direction: row;
    }
    
    .benefits-text {
        width: 60%;
    }
    
    .benefits-image {
        width: 40%;
    }
}

/* About Us Section Styles */
.about {
    padding: 80px 0;
    background-color: white;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    width: 100%;
}

.subsection-title {
    font-size: 1.5rem;
    color: #2563eb;
    margin-top: 30px;
    margin-bottom: 15px;
}

.values-list {
    padding-left: 20px;
    margin: 20px 0;
}

.values-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
}

.values-list li:before {
    content: "•";
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.about-link {
    display: inline-block;
    margin-top: 15px;
    background-color: #2563eb;
    color: white;
    padding: 10px 20px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.about-link:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
    }
    
    .about-image {
        width: 40%;
    }
    
    .about-text {
        width: 60%;
        padding-left: 40px;
    }
}

/* Privacy Policy Page Styles */
.privacy-hero {
    background-color: #2563eb;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.privacy-title {
    font-size: 2.5rem;
    margin: 0;
}

.privacy-content {
    padding: 60px 0;
    background-color: white;
}

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

.privacy-section-title {
    color: #2563eb;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 10px;
}

.privacy-list {
    padding-left: 20px;
    margin: 20px 0;
}

.privacy-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .privacy-title {
        font-size: 3rem;
    }
    
    .privacy-section {
        margin-bottom: 50px;
    }
    
    .privacy-section-title {
        font-size: 2rem;
    }
}

.orange-icon { color: #f97316; }
.orange-link { color: #f97316; }
.orange-link:hover { text-decoration: underline; }

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #f8fafc;
    position: relative;
}

.testimonials:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #93c5fd);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    position: relative;
    padding-left: 2rem;
}

.testimonial-text::before {
    content: "“";
    position: absolute;
    left: 0;
    top: -10px;
    color: #e5e7eb;
    font-size: 3rem;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 15px;
}

.author-info {
    flex-grow: 1;
}

.author-name {
    margin: 0;
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
}

.author-title {
    margin: 5px 0 0;
    color: #6b7280;
    font-size: 0.9rem;
}

.testimonials-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonials-cta h3 {
    color: #1f2937;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

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

.testimonial-button {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.testimonial-button:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(29, 78, 216, 0.3);
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-cta h3 {
        font-size: 2rem;
    }
}

.citizenship-text-only {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.citizenship-text-only h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.citizenship-text-only p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.benefits-list {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.benefits-list li {
    margin-bottom: 0.5rem;
}

.footer-about {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    object-fit: contain;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
}

/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    padding: 20px;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    z-index: 1000;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link, .mobile-cta-button {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
}

.mobile-cta-button {
    background: #2563eb;
    color: white;
    border-radius: 4px;
    padding: 12px;
    text-align: center;
    margin-top: 10px;
    border: none;
}

/* Hide mobile menu button on desktop */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #4b5563;
    padding: 5px;
}

/* Show mobile menu button on mobile */
@media (max-width: 768px) {
    .mobile-menu-button {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
}