:root {
    --primary-color: #101e40;
    --primary-light: #1a2a5a;
    --accent-color: #f5b53f;
    --text-color: #333;
    --light-text: #fff;
    --gray-text: #6c757d;
    --light-bg: #f8f9fa;
    --border-radius: 4px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0.8rem auto;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

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

ul {
    list-style: none;
}

section {
    padding: 4rem 0;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

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

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-secondary:hover {
    background-color: rgba(245, 181, 63, 0.1);
}

/* Cookie Container */
.cookie-container {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 400px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    z-index: 1000;
    padding: 1.5rem;
    transform: translateY(0);
    transition: transform 0.5s ease-in-out;
}

.cookie-container.hidden {
    transform: translateY(150%);
}

.cookie-icon {
    margin-bottom: 0.5rem;
}

.cookie-icon img {
    width: 30px;
    height: 30px;
}

.cookie-content h3 {
    margin-bottom: 0.8rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.cookie-buttons button {
    flex: 1;
}

@media (max-width: 768px) {
    .cookie-container {
        width: calc(100% - 2rem);
        left: 1rem;
        bottom: 1rem;
    }
}

/* Header */
header {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 1rem 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

nav ul {
    display: flex;
    gap: 1.5rem;
}

nav a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero-section {
    background-color: var(--primary-color);
    color: var(--light-text);
    position: relative;
    padding: 0;
}

.hero-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
}

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

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Principles Section */
.principles-section {
    background-color: white;
    padding: 4rem 1.5rem;
}

.principles-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.principle-card {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.principle-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.principles-section .btn {
    display: block;
    max-width: 250px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background-color: white;
    padding: 4rem 1.5rem;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content h3 {
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.about-content .btn {
    margin-top: 1rem;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

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

/* Services Section */
.services-section {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 4rem 1.5rem;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: white;
    color: var(--text-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

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

.service-card h3, .service-card p {
    padding: 0 1.5rem;
}

.service-card h3 {
    margin-top: 1.5rem;
}

.service-card p {
    margin-bottom: 1.5rem;
}

/* Blog Section */
.blog-section {
    background-color: white;
    padding: 4rem 1.5rem;
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.blog-image {
    height: 180px;
    overflow: hidden;
}

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

.blog-card h3, .blog-card p {
    padding: 0 1.5rem;
}

.blog-card h3 {
    margin-top: 1.5rem;
    font-size: 1.2rem;
}

.blog-card p {
    margin-bottom: 1.5rem;
    color: var(--gray-text);
}

/* Contact Section */
.contact-section {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 4rem 1.5rem;
    position: relative;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.contact-info {
    text-align: center;
    margin-bottom: 2rem;
}

form {
    max-width: 600px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input, textarea {
    padding: 0.8rem;
    border-radius: var(--border-radius);
    border: none;
    font-family: 'Inter', sans-serif;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

form button {
    align-self: center;
    width: 200px;
}

.contact-image {
    max-width: 800px;
    height: 200px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

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

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 2rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-address {
    text-align: center;
}

.footer-copyright {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        height: 400px;
        order: -1;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .principles-container, 
    .services-container, 
    .blog-container {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        height: 200px;
    }
    
    .about-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

.main-section .services-container {
    grid-template-columns: 1fr;
}