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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #f8f8f8;
}

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

/* Hero Section */
.hero-section {
    background: white;
    
    background: #2E3192;
}
.contact-btn {
  position: absolute;
  z-index: 50;
     top: 350px;
    right: 260px;
    display:block;
    padding: 12px 24px;
    background-color: #fff;
    color:#4A4FAF;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}
.contact-btn:hover {
  background-color: #4A4FAF;
  color: #fff;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    width: 300px;
    height: auto;
    margin: 30px auto;
}
.logo-text {
  display: block;
    font-size: 24px;
    font-weight: 700;
    color: #2E3192;
    letter-spacing: 0.5px;
    text-align: center;
}

.vehicle-showcase {
    text-align: center;
    width: 100%;
}

.vehicle-image {
    position: relative;
    overflow: hidden;
}

.vehicle-image img {
  z-index: 10;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.vehicle-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2E3192;
    margin-bottom: 24px;
}

.specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.specs p {
    font-size: 14px;
    color: #666;
}

/* Purpose Section */
.purpose-section {
    background: linear-gradient(135deg, #2E3192 0%, #4A4FAF 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.purpose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M10 10L90 50L10 90" stroke="rgba(255,255,255,0.05)" stroke-width="2" fill="none"/></svg>');
    opacity: 0.3;
}

.purpose-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    text-align: center;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

/* Locations Section */
.locations-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2E3192;
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.location-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.location-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2E3192;
    margin-bottom: 12px;
}

.location-card p {
    font-size: 16px;
    color: #666;
}

/* Who We Are Section */
.who-we-are-section {
    padding: 80px 0;
    background: white;
}

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

.text-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #444;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: #2E3192;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 24px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #1f2163;
}

/* Mission & Vision Section */
.mission-vision-section {
    background: linear-gradient(135deg, #2E3192 0%, #1f2163 100%);
    padding: 80px 0;
    position: relative;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="1000" height="1000" xmlns="http://www.w3.org/2000/svg"><circle cx="500" cy="500" r="400" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="2"/><circle cx="500" cy="500" r="300" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="2"/><circle cx="500" cy="500" r="200" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="2"/></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.mission-card,
.vision-card {
    color: white;
}

.mission-card h2,
.vision-card h2 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    opacity: 0.8;
}

.mission-card h3,
.vision-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

.mission-card p,
.vision-card p {
    margin-bottom: 20px;
    line-height: 1.8;
    opacity: 0.9;
}

/* Press Room Section */
.press-room-section {
    padding: 80px 0;
    background: white;
}

.press-contact {
    margin-bottom: 48px;
}

.press-contact h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2E3192;
    margin-bottom: 12px;
}

.email-link {
    color: #2E3192;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
}

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

.recent-news h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2E3192;
    margin-bottom: 32px;
}

.news-year {
    margin-bottom: 40px;
}

.news-year h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2E3192;
    margin-bottom: 20px;
}

.news-list {
    list-style: none;
}

.news-list li {
    padding: 16px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

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

.news-list .date {
    font-size: 14px;
    color: #2E3192;
    font-weight: 600;
    min-width: 60px;
}

.news-list .title {
    font-size: 16px;
    color: #333;
}

/* Privacy Section */
.privacy-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.privacy-content {
    max-width: 800px;
}

.update-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
}

.privacy-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2E3192;
    margin-top: 32px;
    margin-bottom: 16px;
}

.privacy-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: #444;
}

.privacy-content ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.privacy-content li {
    margin-bottom: 12px;
    line-height: 1.8;
    color: #444;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #2E3192 0%, #1f2163 100%);
    padding: 80px 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M20 20L80 80M80 20L20 80" stroke="rgba(255,255,255,0.03)" stroke-width="2"/></svg>');
    background-size: 200px;
}

.contact-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.contact-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.contact-description a{
  text-decoration: underline;
  color: #fff;
}
.contact-description a:hover{
  text-decoration: none;
}
.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: #2E3192;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cert-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

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

    .purpose-title {
        font-size: 32px;
    }

    .content-grid,
    .mission-vision-grid,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .vehicle-info h2 {
        font-size: 24px;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-outline,
    .btn-primary {
        width: 100%;
        max-width: 300px;
    }
}
