/* Global Styles */
:root {
    --primary-color: #0017e6;
    --primary-dark: #001299;
    --primary-light: #3344ff;
    --secondary-color: #ff6b4a;
    --text-color: #333333;
    --light-text: #ffffff;
    --light-bg: #f5f7ff;
    --dark-bg: #001073;
    --border-radius: 8px;
    --card-bg: #ffffff;
    --box-shadow: 0 4px 15px rgba(0, 23, 230, 0.1);
}

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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

p {
    margin-bottom: 20px;
}

/* Button Styles */
.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #ff5533;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--text-color);
    padding: 11px 24px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid #dddddd;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
    border-color: #bbbbbb;
}

.cta-center {
    text-align: center;
    margin: 40px 0;
}

/* Header & Navigation */
header {
    padding: 15px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-link {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    z-index: 1000;
    box-shadow: var(--box-shadow);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Hero Section */
.hero {
    padding: 50px 0;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 0 0 50px 50px;
    margin-bottom: 50px;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--light-text);
}

.hero-content p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.illustration-image {
    border-radius: var(--border-radius);
    width: 100%;
}

/* Services Section */
.services {
    padding: 50px 0;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

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

.service-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 23, 230, 0.15);
}

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

.icon {
    width: 60px;
    height: 60px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.image-banner {
    width: 100%;
    margin: 40px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

/* About Us Section */
.about-us {
    padding: 50px 0;
    background-color: var(--light-bg);
    border-radius: 50px;
    margin: 50px 0;
}

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

.about-text h2 {
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
}

.analysis-image {
    border-radius: var(--border-radius);
    width: 100%;
}

.philosophy-card {
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: var(--border-radius);
    padding: 25px;
    margin: 30px 0;
}

.philosophy-card h3 {
    color: var(--light-text);
    margin-bottom: 10px;
}

/* Blog Articles Section */
.blog-articles {
    padding: 50px 0;
}

.blog-articles h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

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

.blog-card {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Contact Section */
.contact {
    padding: 50px 0;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 50px;
    margin: 50px 0;
}

.contact h2 {
    color: var(--light-text);
    text-align: center;
    margin-bottom: 30px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-info {
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-form-container h3 {
    color: var(--light-text);
    margin-bottom: 20px;
}

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

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

.consultation-image {
    border-radius: var(--border-radius);
    width: 100%;
}

/* Thank You Page */
.thank-you {
    padding: 80px 0;
}

.thank-you-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.thank-you-content h1 {
    color: var(--light-text);
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.thank-you-content p {
    margin-bottom: 30px;
}

.team-image {
    border-radius: var(--border-radius);
    width: 100%;
}

/* Policy Pages */
.policy-content {
    padding: 60px 0;
}

.policy-content h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

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

.policy-section h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.policy-section p {
    margin-bottom: 15px;
}

.policy-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.policy-section ul li {
    margin-bottom: 10px;
}

/* Footer */
footer {
    padding: 40px 0;
    background-color: var(--light-bg);
    border-top: 1px solid #eaeaea;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.footer-copy {
    text-align: center;
    font-size: 0.9rem;
    color: #777777;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-wrapper, .about-content, .contact-wrapper, .thank-you-card {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 40px 0;
        border-radius: 0 0 30px 30px;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services h2, .blog-articles h2, .policy-content h1 {
        font-size: 2rem;
    }
    
    .about-us, .contact {
        border-radius: 30px;
    }
}

@media (max-width: 768px) {
    .services-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-banner {
        width: 95%;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        width: 100%;
        justify-content: space-between;
    }
    
    .about-us, .contact {
        border-radius: 20px;
        margin: 30px 0;
    }
    
    .thank-you-card {
        padding: 25px;
    }
}