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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3748;
}

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

.logo h1 {
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo .tagline {
    font-size: 12px;
    color: #c9a227;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #c9a227;
}

.hero {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: #ffffff;
    padding: 20px 20px 60px;
    min-height: 90vh;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.hero-content {
    max-width: 600px;
    padding: 80px 0 40px;
    position: relative;
    z-index: 5;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #c9a227;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.cta-button:hover {
    background: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 400px;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a365d;
}

.services {
    padding: 100px 0;
    background: #f7fafc;
}

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

.service-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

.service-card h3 {
    font-size: 24px;
    color: #1a365d;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #718096;
    line-height: 1.7;
}

.analytics-section {
    padding: 100px 0;
    background: #ffffff;
}

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

.analytics-content h2 {
    font-size: 36px;
    color: #1a365d;
    margin-bottom: 20px;
    font-weight: 700;
}

.analytics-content p {
    color: #718096;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.analytics-features {
    list-style: none;
}

.analytics-features li {
    color: #2d3748;
    font-size: 18px;
    padding: 10px 0;
    font-weight: 500;
}

.analytics-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    height: 400px;
}

.analytics-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
}

.about {
    padding: 100px 0;
    background: #f7fafc;
}

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

.about-text h3 {
    font-size: 28px;
    color: #1a365d;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text p {
    color: #718096;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values {
    margin-top: 40px;
}

.value-item {
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
}

.value-item strong {
    display: block;
    color: #c9a227;
    font-size: 20px;
    margin-bottom: 5px;
}

.value-item span {
    color: #718096;
    font-size: 16px;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    height: 500px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
}

.success-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: #ffffff;
}

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

.success-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    height: 400px;
}

.success-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
}

.success-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.success-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact {
    padding: 100px 0;
    background: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #1a365d;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-details p,
.contact-details a {
    color: #718096;
    text-decoration: none;
    line-height: 1.6;
}

.contact-details a:hover {
    color: #c9a227;
}

.contact-form {
    background: #f7fafc;
    padding: 40px;
    border-radius: 20px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c9a227;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: #1a365d;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #2c5282;
    transform: translateY(-2px);
}

.footer {
    background: #1a365d;
    color: #ffffff;
    padding: 60px 0 30px;
}

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

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

@media (max-width: 968px) {
    .hero-image {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 40px;
        border-radius: 20px;
        transform: none;
        top: auto;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h2 {
        font-size: 36px;
    }

    .analytics-section .container,
    .success-section .container {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        margin-top: 20px;
        gap: 20px;
    }

    .hero-content h2 {
        font-size: 32px;
    }

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