/* Base Styles */
:root {
    --primary-color: #f8b132;
    --primary-dark: #e89b10;
    --secondary-color: #2c4057;
    --secondary-light: #3c546d;
    --text-color: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --background-light: #f9f9f9;
    --background-white: #ffffff;
    --background-dark: #efefef;
    --success-color: #4caf50;
    --error-color: #f44336;
    --border-color: #e1e1e1;
    --border-radius: 5px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-light);
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

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

ul, ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: var(--background-white);
}

.btn-secondary {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--secondary-color);
    color: var(--background-white);
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    text-align: center;
}

.btn-secondary:hover {
    background-color: var(--secondary-light);
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

/* Header */
header {
    background-color: var(--background-white);
    box-shadow: var(--box-shadow);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    max-width: 180px;
}

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

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin-left: 30px;
}

nav ul li:first-child {
    margin-left: 0;
}

nav ul li a {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

nav ul li a.active, nav ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-color: var(--secondary-color);
    color: var(--background-white);
    padding: 100px 0;
    text-align: center;
    background-image: linear-gradient(rgba(44, 64, 87, 0.8), rgba(44, 64, 87, 0.8)), url('images/11.jpg');
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 3rem;
    color: var(--background-white);
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 30px;
}

.hero .btn {
    margin-top: 20px;
}

/* Page Header */
.page-header {
    background-color: var(--secondary-color);
    color: var(--background-white);
    padding: 60px 0;
    text-align: center;
    background-image: linear-gradient(rgba(44, 64, 87, 0.8), rgba(44, 64, 87, 0.8)), url('images/11.jpg');
    background-size: cover;
    background-position: center;
}

.page-header h1 {
    color: var(--background-white);
    margin-bottom: 10px;
}

.page-header p {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Featured Posts */
.featured-posts {
    padding: 80px 0;
    background-color: var(--background-white);
}

.featured-posts h2 {
    text-align: center;
    margin-bottom: 40px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.post-card {
    background-color: var(--background-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card h3 {
    font-size: 1.2rem;
    padding: 15px 20px 5px 20px;
}

.post-card p {
    padding: 0 20px;
    color: var(--text-light);
}

.post-card .btn-secondary {
    margin: 10px 20px 20px 20px;
}

.view-more {
    text-align: center;
    margin-top: 40px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--background-light);
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--background-white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.service-card .icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card .icon svg {
    width: 30px;
    height: 30px;
    color: var(--secondary-color);
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-features {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: var(--text-light);
}

.service-features li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

/* Facts Section */
.facts {
    padding: 60px 0;
    background-color: var(--primary-color);
}

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

.fact-box {
    background-color: var(--background-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.fact-box p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--secondary-color);
    margin: 0;
}

/* Checklist Section */
.checklist {
    padding: 80px 0;
    background-color: var(--background-white);
}

.checklist h2 {
    text-align: center;
    margin-bottom: 40px;
}

.check-items {
    list-style-type: none;
    padding: 0;
}

.check-items li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 15px;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
}

.check-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 15px;
}

.check-text {
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background-color: var(--secondary-color);
    text-align: center;
    color: var(--background-white);
    background-image: linear-gradient(rgba(44, 64, 87, 0.9), rgba(44, 64, 87, 0.9)), url('images/12.jpg');
    background-size: cover;
    background-position: center;
}

.cta h2 {
    color: var(--background-white);
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--background-light);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--background-white);
    padding: 60px 0 20px;
}

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

.footer-logo img {
    max-width: 150px;
    margin-bottom: 15px;
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a, .footer-contact a {
    color: var(--background-white);
}

.footer-links ul li a:hover, .footer-contact a:hover {
    color: var(--primary-color);
}

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

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

.social-icons a svg {
    width: 20px;
    height: 20px;
    color: var(--background-white);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.legal-links {
    margin-bottom: 15px;
}

.legal-links a {
    color: var(--background-white);
    margin: 0 10px;
    font-size: 0.9rem;
}

.legal-links a:hover {
    color: var(--primary-color);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--text-lighter);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--background-white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.btn-cookie {
    padding: 8px 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cookie:hover {
    background-color: var(--primary-dark);
}

.btn-cookie-secondary {
    padding: 8px 15px;
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-secondary:hover {
    background-color: var(--background-light);
}

/* About Page */
.about-intro {
    padding: 80px 0;
    background-color: var(--background-white);
}

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

.about-text h2 {
    margin-top: 30px;
    margin-bottom: 20px;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.team {
    padding: 80px 0;
    background-color: var(--background-light);
}

.team h2, .team-intro {
    text-align: center;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--background-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    margin: 20px 15px 5px;
}

.team-member p {
    padding: 0 15px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.team-member .social-icons {
    justify-content: center;
    margin-bottom: 20px;
}

.values {
    padding: 80px 0;
    background-color: var(--background-white);
}

.values h2 {
    text-align: center;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    padding: 30px;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.value-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-icon svg {
    color: var(--secondary-color);
}

.testimonials {
    padding: 80px 0;
    background-color: var(--background-light);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
}

.testimonial {
    padding: 30px;
    background-color: var(--background-white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
}

.quote {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.quote p {
    font-style: italic;
    font-size: 1.1rem;
    position: relative;
    padding: 0 20px;
    margin-bottom: 0;
}

.quote p::before {
    content: """;
    font-size: 3rem;
    position: absolute;
    left: -10px;
    top: -20px;
    color: var(--primary-color);
}

.quote p::after {
    content: """;
    font-size: 3rem;
    position: absolute;
    right: -10px;
    bottom: -60px;
    color: var(--primary-color);
}

.author {
    display: flex;
    align-items: center;
}

.author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author h4 {
    margin-bottom: 0;
}

/* Services Page */
.featured-service {
    padding: 80px 0;
    background-color: var(--background-white);
}

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

.service-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.service-text h2 {
    margin-bottom: 20px;
}

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

.services-grid-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.services-grid-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.pricing {
    padding: 80px 0;
    background-color: var(--background-white);
}

.pricing h2, .pricing-intro {
    text-align: center;
}

.pricing-intro {
    max-width: 800px;
    margin: 0 auto 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.pricing-card.featured {
    transform: scale(1.05);
    background-color: var(--background-white);
    border: 2px solid var(--primary-color);
    position: relative;
    z-index: 1;
}

.pricing-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.price-header {
    background-color: var(--secondary-color);
    color: var(--background-white);
    padding: 20px;
    text-align: center;
}

.pricing-card.featured .price-header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.price-header h3 {
    color: var(--background-white);
    margin-bottom: 10px;
}

.pricing-card.featured .price-header h3 {
    color: var(--secondary-color);
}

.price {
    font-size: 2rem;
    font-weight: bold;
}

.price-period {
    font-size: 1rem;
    font-weight: normal;
}

.price-features {
    padding: 20px;
}

.price-features ul {
    list-style-type: none;
    padding: 0;
}

.price-features ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 25px;
}

.price-features ul li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 10px;
}

.pricing-card .btn {
    display: block;
    margin: 20px;
}

.faq {
    padding: 80px 0;
    background-color: var(--background-light);
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    background-color: var(--background-white);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-answer.show {
    display: block;
}

.faq-answer p {
    margin-bottom: 0;
}

/* Blog Page */
.blog-content {
    padding: 80px 0;
    background-color: var(--background-white);
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.blog-post {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 40px;
    background-color: var(--background-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

.post-content {
    padding: 20px;
}

.post-meta {
    display: flex;
    gap: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.post-content h2 {
    font-size: 1.5rem;
}

.post-content p {
    color: var(--text-light);
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background-color: var(--background-white);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.search form {
    display: flex;
}

.search input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.search button {
    padding: 10px 15px;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
}

.search button svg {
    color: var(--secondary-color);
}

.categories ul {
    list-style-type: none;
    padding: 0;
}

.categories ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.categories ul li a {
    color: var(--text-color);
    transition: var(--transition);
}

.categories ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.popular-post {
    margin-bottom: 15px;
}

.popular-post:last-child {
    margin-bottom: 0;
}

.popular-post a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-color);
}

.popular-post a:hover h4 {
    color: var(--primary-color);
}

.popular-post img {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius);
    object-fit: cover;
}

.popular-post h4 {
    font-size: 1rem;
    margin-bottom: 0;
    transition: var(--transition);
}

.cta-widget {
    background-color: var(--primary-color);
    text-align: center;
}

.cta-widget h3 {
    color: var(--secondary-color);
    border-bottom: none;
}

.cta-widget p {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud a {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    color: var(--text-light);
    transition: var(--transition);
}

.tag-cloud a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.newsletter {
    padding: 60px 0;
    background-color: var(--background-light);
}

.newsletter-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--background-white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.newsletter-box h2 {
    margin-bottom: 10px;
}

.newsletter-box p {
    margin-bottom: 30px;
}

.newsletter form {
    display: flex;
    gap: 10px;
}

.newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

/* Contact Page */
.contact-info {
    padding: 60px 0;
    background-color: var(--background-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.contact-card {
    text-align: center;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon svg {
    color: var(--secondary-color);
    width: 30px;
    height: 30px;
}

.contact-card h3 {
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.contact-form-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.contact-layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
}

.contact-form-container, .contact-map {
    background-color: var(--background-white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.contact-form-container h2, .contact-map h2 {
    margin-bottom: 20px;
}

.contact-form-container p {
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: var(--background-light);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.map-container {
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.map-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.social-contact h3 {
    margin-bottom: 15px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: var(--background-white);
    margin: 10% auto;
    padding: 0;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 500px;
    position: relative;
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-lighter);
}

.modal-body {
    padding: 40px;
    text-align: center;
}

.check-icon {
    color: var(--success-color);
    margin-bottom: 20px;
}

.modal-body h2 {
    margin-bottom: 15px;
}

.modal-body p {
    margin-bottom: 30px;
}

.close-btn {
    display: inline-block;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .about-content, .service-feature, .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .blog-post {
        grid-template-columns: 1fr;
    }
    
    .post-image img {
        height: 200px;
    }
    
    .newsletter form {
        flex-direction: column;
    }
    
    .newsletter .btn {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .services-grid, .values-grid, .team-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
}

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

.fadeIn {
    animation: fadeIn 0.5s ease-in-out;
}
