/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
header {
    background-color: #0a1e3d;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 180px;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff6b35;
}

.cta-button {
    background-color: #ff6b35;
    color: #fff;
    padding: 8px 25px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e55a2b;
    color: #fff;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.menu-overlay.active {
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('home-hero-meat-processing.jpg');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.hero h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background-color: #ff6b35;
    color: #fff;
    padding: 12px 50px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #e55a2b;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    padding: 12px 50px;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 3px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #0a1e3d;
}

/* Contact Bar */
.contact-bar {
    background-color: #f4f4f4;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.contact-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.contact-item span {
    font-size: 14px;
    color: #666;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contact-item strong {
    color: #0a1e3d;
    margin-right: 8px;
}

/* Equipment Section */
.equipment-section {
    padding: 80px 30px;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 36px;
    color: #0a1e3d;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-header h2::before,
.section-header h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 1px;
    background-color: #ddd;
}

.section-header h2::before {
    right: calc(100% + 20px);
}

.section-header h2::after {
    left: calc(100% + 20px);
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 50px;
}

.equipment-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.equipment-card {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.equipment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.equipment-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.equipment-card-content {
    padding: 25px;
}

.equipment-card h3 {
    font-size: 18px;
    color: #0a1e3d;
    margin-bottom: 10px;
}

.equipment-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.view-all-btn {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all {
    background-color: #0a1e3d;
    color: #fff;
    padding: 12px 50px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
    display: inline-block;
}

.btn-view-all:hover {
    background-color: #153051;
}

/* Industries Section */
.industries-section {
    padding: 80px 30px;
    background-color: #f9f9f9;
}

.industries-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.industry-card {
    position: relative;
    height: 300px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.industry-card:hover {
    transform: scale(1.02);
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 30, 61, 0.95), transparent);
    padding: 30px 20px 20px;
    color: #fff;
}

.industry-card h3 {
    font-size: 20px;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: url('cta-background-blue-wood.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 30px 40px 30px;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 5px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
    font-weight: 400;
}

.cta-section p {
    font-size: 42px;
    margin-bottom: 30px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
    font-weight: 600;
}

.cta-section .btn-primary {
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.6);
}

/* Footer */
footer {
    background: url('cta-background-blue-wood.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 40px 0 80px 0;
    position: relative;
}

.footer-overlay {
    background: linear-gradient(to bottom, rgba(10, 30, 61, 0.92), rgba(10, 30, 61, 0.65));
    width: 100%;
    padding: 25px 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-brand img {
    height: 50px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-contact {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-contact p {
    margin: 0;
    font-size: 14px;
    color: #fff;
}

.footer-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .equipment-detail,
    .industry-detail {
        grid-template-columns: 1fr !important;
    }

    .about-content-container {
        flex-direction: column;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 40px 30px;
        margin: 0 30px;
    }

    .contact-details {
        padding: 30px;
    }

    .privacy-content-section {
        padding: 60px 15px;
    }

    .privacy-content-container {
        padding: 30px 20px;
        margin: 0 0;
    }

    .thank-you-container {
        padding: 60px 30px;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .thank-you-actions a {
        width: 100%;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background-color: #0a1e3d;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transition: left 0.3s;
        align-items: flex-start;
        overflow-y: auto;
        z-index: 1000;
    }
    
    nav.active {
        left: 0;
    }
    
    nav a {
        font-size: 18px;
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    /* Hero section fixes */
    .hero {
        height: auto;
        min-height: 500px;
        padding: 60px 20px;
    }

    .hero h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 12px;
    }
    
    .hero-buttons a {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 15px;
    }

    .equipment-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

    /* Contact Bar - Stack vertically and wrap email */
    .contact-bar {
        padding: 15px 0;
    }
    
    .contact-bar-content {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        padding: 0 20px;
    }
    
    .contact-item {
        width: 100%;
        flex-wrap: wrap;
        font-size: 13px;
    }
    
    .contact-item span {
        word-break: break-word;
        flex: 1;
        min-width: 0;
        font-size: 13px;
    }
    
    .contact-item strong {
        display: block;
        margin-bottom: 3px;
    }
    
    .footer-brand {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .page-header-content h1 {
        font-size: 32px;
    }
    
    /* Equipment Page - Make all images same size and consistent layout */
    .equipment-detail,
    .equipment-detail.reverse {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .equipment-detail-image,
    .equipment-detail.reverse .equipment-detail-image {
        order: 1;
    }
    
    .equipment-detail-content,
    .equipment-detail.reverse .equipment-detail-content {
        order: 2;
    }
    
    .equipment-detail-image img {
        max-height: 250px;
        width: 100%;
        object-fit: cover;
    }
    
    /* Industries Page - Fix image order on mobile */
    .industry-detail,
    .industry-detail.reverse {
        grid-template-columns: 1fr !important;
        direction: ltr !important;
        gap: 30px;
    }
    
    .industry-detail-image {
        order: 1;
    }
    
    .industry-detail-content {
        order: 2;
    }
    
    .industry-detail-image img {
        max-height: 250px;
        width: 100%;
        object-fit: cover;
    }
    
    /* Contact Form - Full width on mobile with proper constraints */
    .contact-section {
        padding: 40px 15px;
    }
    
    .contact-container {
        grid-template-columns: 1fr !important;
        gap: 30px;
        padding: 25px 15px !important;
        margin: 0 !important;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-details {
        padding: 20px 15px;
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        font-size: 16px;
        padding: 12px;
        box-sizing: border-box;
    }
    
    .contact-form-wrapper button[type="submit"] {
        width: 100%;
    }
    
    .contact-form-wrapper {
        width: 100%;
        overflow: hidden;
    }
    
    .contact-form-wrapper form {
        width: 100%;
    }
    
    /* Section padding adjustments */
    .equipment-section,
    .industries-section {
        padding: 40px 20px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 50px 20px;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .cta-section p {
        font-size: 32px;
    }
}

/* Page Header Styles */
.page-header {
    background-color: #f9f9f9;
    padding: 60px 0;
    border-bottom: 3px solid #0a1e3d;
}

.page-header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.page-header-content h1 {
    font-size: 42px;
    color: #0a1e3d;
    margin-bottom: 20px;
}

.page-header-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    max-width: 900px;
}

/* Contact Bar Email Link */
.contact-bar .contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-bar .contact-item a:hover {
    color: #ff6b35;
}

/* Contact Page Email Link */
.contact-detail-item a {
    color: #0a1e3d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-detail-item a:hover {
    color: #ff6b35;
}

/* Privacy Policy Email Link */
.privacy-content-container a {
    color: #0a1e3d;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #0a1e3d;
    transition: color 0.3s, border-color 0.3s;
}

.privacy-content-container a:hover {
    color: #ff6b35;
    border-color: #ff6b35;
}

/* Equipment Details Page */
.equipment-details-section {
    padding: 80px 0;
    background-color: #fff;
}

.equipment-details-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.equipment-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.equipment-detail:last-child {
    margin-bottom: 0;
}

.equipment-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.equipment-detail-content h2 {
    font-size: 32px;
    color: #0a1e3d;
    margin-bottom: 20px;
}

.equipment-detail-content h3 {
    font-size: 18px;
    color: #0a1e3d;
    margin-top: 25px;
    margin-bottom: 15px;
}

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

.equipment-detail-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.equipment-detail-content ul li {
    font-size: 15px;
    color: #666;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.equipment-detail-content ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

/* Industries Details Page */
.industries-details-section {
    padding: 80px 0;
    background-color: #fff;
}

.industries-details-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.industry-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.industry-detail.reverse {
    direction: rtl;
}

.industry-detail.reverse > * {
    direction: ltr;
}

.industry-detail:last-child {
    margin-bottom: 0;
}

.industry-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.industry-detail-content h2 {
    font-size: 32px;
    color: #0a1e3d;
    margin-bottom: 20px;
}

.industry-detail-content h3 {
    font-size: 18px;
    color: #0a1e3d;
    margin-top: 25px;
    margin-bottom: 15px;
}

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

.industry-detail-content ul {
    list-style: none;
    padding: 0;
}

.industry-detail-content ul li {
    font-size: 15px;
    color: #666;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.industry-detail-content ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

/* About Page */
.about-content-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-text h2 {
    font-size: 26px;
    color: #0a1e3d;
    margin-top: 40px;
    margin-bottom: 20px;
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.expertise-list li {
    font-size: 16px;
    color: #666;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.expertise-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 18px;
}

.location-text {
    font-weight: 500;
    color: #0a1e3d !important;
}

.about-image {
    flex: 0 0 500px;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    box-sizing: border-box;
}

.contact-info h2 {
    font-size: 32px;
    color: #0a1e3d;
    margin-bottom: 15px;
}

.contact-info > p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 5px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-detail-item svg {
    flex-shrink: 0;
    color: #ff6b35;
    margin-top: 2px;
}

.contact-detail-item h3 {
    font-size: 16px;
    color: #0a1e3d;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-detail-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.contact-detail-item a {
    color: #0a1e3d;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.contact-detail-item a:hover {
    color: #ff6b35;
}

.contact-form-wrapper h2 {
    font-size: 32px;
    color: #0a1e3d;
    margin-bottom: 10px;
}

.contact-form-wrapper > p {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #0a1e3d;
    margin-bottom: 8px;
}

.form-group .required {
    color: #ff6b35;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0a1e3d;
    box-shadow: 0 0 0 3px rgba(10, 30, 61, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.hidden {
    display: none;
}

.form-privacy {
    margin-top: 10px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 3px;
}

.form-privacy p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.form-privacy a {
    color: #0a1e3d;
    text-decoration: underline;
    font-weight: 500;
}

.form-privacy a:hover {
    color: #ff6b35;
}

.contact-form-wrapper button[type="submit"] {
    align-self: flex-start;
    margin-top: 10px;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 30px;
    background-color: #f9f9f9;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-container {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    background-color: #fff;
    padding: 80px 60px;
    border-radius: 5px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.thank-you-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thank-you-icon svg {
    background-color: #e8f5e9;
    border-radius: 50%;
    padding: 20px;
}

.thank-you-container h1 {
    font-size: 42px;
    color: #0a1e3d;
    margin-bottom: 20px;
}

.thank-you-container p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.thank-you-actions {
    display: flex !important;
    gap: 15px;
    justify-content: center !important;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.thank-you-actions a {
    min-width: 200px;
    text-align: center;
    flex-shrink: 0;
    display: inline-block;
}

/* Privacy Policy Page */
.privacy-content-section {
    padding: 80px 30px;
    background-color: #fff;
}

.privacy-content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.privacy-content-container > p:first-child {
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

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

.privacy-content-container h2 {
    font-size: 24px;
    color: #0a1e3d;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.privacy-content-container h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.privacy-content-container ul {
    margin-bottom: 25px;
    padding-left: 0;
    list-style: none;
}

.privacy-content-container ul li {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.privacy-content-container ul li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #ff6b35;
    font-weight: bold;
    font-size: 20px;
}

.privacy-content-container a {
    color: #0a1e3d;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #0a1e3d;
    transition: color 0.3s, border-color 0.3s;
}

.privacy-content-container a:hover {
    color: #ff6b35;
    border-color: #ff6b35;
}
