body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafaf9;
    margin: 0;
    padding: 0;
}

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

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', Georgia, serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a3a52;
    line-height: 1.3;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5, h6 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #4a90b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2c5a8a;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #e8f1f5 0%, #f0f4f8 100%);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a3a52;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #4a90b8;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: #1a3a52;
    font-size: 0.95rem;
    font-weight: 500;
}

nav a:hover {
    color: #4a90b8;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #1a3a52;
    cursor: pointer;
    padding: 0;
}

.burger-menu:hover {
    color: #4a90b8;
}

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

.menu-overlay.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.menu-panel {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 250;
    padding: 2rem;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
}

.menu-panel.active {
    right: 0;
}

.menu-panel a {
    display: block;
    padding: 1rem 0;
    text-decoration: none;
    color: #1a3a52;
    font-size: 1rem;
    border-bottom: 1px solid #e0e0e0;
    transition: color 0.3s ease;
}

.menu-panel a:hover {
    color: #4a90b8;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #1a3a52;
    padding: 0;
}

.close-btn:hover {
    color: #4a90b8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #d4e4f0 0%, #e8f1f5 50%, #f0f4f8 100%);
    padding: 6rem 2rem;
    text-align: center;
    animation: slideUp 0.8s ease;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a3a52;
}

.hero p {
    font-size: 1.2rem;
    color: #4a5f77;
    margin-bottom: 2rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
section {
    padding: 4rem 2rem;
    animation: fadeIn 0.6s ease;
}

section:nth-child(even) {
    background: white;
}

section:nth-child(odd) {
    background: #fafaf9;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    animation: slideUp 0.7s ease;
}

.section-title h2 {
    margin-bottom: 0.5rem;
}

.section-title p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.card {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    animation: fadeIn 0.6s ease;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.card h3 {
    margin-bottom: 1rem;
    color: #1a3a52;
}

.card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.tool-item {
    background: white;
    padding: 1.5rem;
    border-left: 4px solid #4a90b8;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tool-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateX(4px);
}

.tool-item h4 {
    color: #1a3a52;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.tool-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Image Container */
.image-container {
    text-align: center;
    margin: 2rem 0;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.02);
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-block {
    background: white;
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-block:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-block h3 {
    margin-bottom: 1rem;
    color: #1a3a52;
}

.contact-block p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-block a {
    color: #4a90b8;
    text-decoration: none;
}

.contact-block a:hover {
    text-decoration: underline;
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

form label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

form input,
form textarea,
form select {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

form input:focus,
form textarea:focus,
form select:focus {
    outline: none;
    border-color: #4a90b8;
    box-shadow: 0 0 0 2px rgba(74, 144, 184, 0.1);
}

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

form button {
    background: #4a90b8;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

form button:hover {
    background: #2c5a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 184, 0.3);
}

form button:active {
    transform: translateY(0);
}

.form-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.form-note a {
    color: #4a90b8;
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

.form-success {
    padding: 1rem;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.form-error {
    padding: 1rem;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin-bottom: 1rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: #4a90b8;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
}

.cta-button:hover {
    background: #2c5a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 184, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

/* Footer */
footer {
    background: #1a3a52;
    color: #e0e0e0;
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

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

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

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column a {
    display: block;
    color: #b0d0e0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

.footer-column p {
    color: #b0d0e0;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #2c5a8a;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #9ab5c5;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-width: 350px;
    z-index: 150;
    display: none;
    animation: slideUp 0.4s ease;
}

.cookie-consent.active {
    display: block;
}

.cookie-consent p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.cookie-consent a {
    color: #4a90b8;
    text-decoration: none;
}

.cookie-consent a:hover {
    text-decoration: underline;
}

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

.cookie-buttons button {
    flex: 1;
    padding: 0.6rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-buttons .accept {
    background: #4a90b8;
    color: white;
}

.cookie-buttons .accept:hover {
    background: #2c5a8a;
}

.cookie-buttons .reject {
    background: #e0e0e0;
    color: #333;
}

.cookie-buttons .reject:hover {
    background: #d0d0d0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.p-1 {
    padding: 0.5rem;
}

.p-2 {
    padding: 1rem;
}

.p-3 {
    padding: 1.5rem;
}

.p-4 {
    padding: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .burger-menu {
        display: block;
    }

    nav {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    section {
        padding: 3rem 1.5rem;
    }

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

    .tools-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

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

    .cookie-consent {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }

    .hero {
        padding: 4rem 1rem;
    }

    .form-container {
        padding: 1.5rem;
    }

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

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    section {
        padding: 2rem 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    nav {
        gap: 1rem;
    }

    nav a {
        font-size: 0.85rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-buttons button {
        width: 100%;
    }

    .hero p {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    header,
    footer,
    .cookie-consent,
    form,
    .cta-button {
        display: none;
    }

    body {
        background: white;
        color: #000;
    }

    a {
        color: #000;
    }

    section {
        background: white;
        page-break-inside: avoid;
    }
}