:root {
    /* Color variables */
    --primary-color: #0069C2;
    --primary-dark: #004f93;
    --primary-light: #338bd6;
    --secondary-color: #F8B133;
    --secondary-dark: #e09a1b;
    --secondary-light: #fac566;
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --background-light: #FFFFFF;
    --background-gray: #F8F9FA;
    --background-dark: #0A2540;
    --border-color: #EEEEEE;
    --error-color: #E53935;
    --success-color: #4CAF50;
    
    /* Typography */
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --section-spacing: 100px;
    --element-spacing: 20px;
    
    /* Border radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 20px;
}

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

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

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

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

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

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

/* Section Spacing */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    color: var(--text-medium);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white !important;
}

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

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

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

.btn-tertiary {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-tertiary:hover {
    background-color: var(--background-gray);
    border-color: var(--text-light);
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: white;
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

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

.logo img {
    width: auto;
    max-height: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-links a:not(.btn):after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-fast);
}

.nav-links a:not(.btn):hover:after {
    width: 100%;
}

.nav-links a.btn {
    padding: 10px 20px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: all var(--transition-fast);
}

/* Banner Section */
.banner {
    padding: 100px 0;
    background-color: var(--background-gray);
    overflow: hidden;
}

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

.banner-content {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 50px;
}

.banner-content h1 {
    margin-bottom: 20px;
    font-size: 2.8rem;
    line-height: 1.2;
}

.banner-content p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.banner-image {
    flex: 0 0 50%;
    max-width: 50%;
}

/* About Section */
.about {
    background-color: white;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.about-text {
    flex: 0 0 100%;
    max-width: 100%;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.stat {
    flex: 0 0 30%;
    max-width: 30%;
    text-align: center;
    padding: 30px;
    background-color: var(--background-gray);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat p {
    margin-bottom: 0;
    color: var(--text-medium);
}

/* Services Section */
.services {
    background-color: var(--background-gray);
}

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

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
}

.service-icon img {
    max-height: 80px;
    max-width: 80px;
    margin: 0 auto;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.service-card ul {
    color: var(--text-medium);
    list-style-type: circle;
    padding-left: 20px;
}

/* Testimonials Section */
.testimonials {
    background-color: white;
}

.testimonials-slider {
    position: relative;
    padding: 30px 0;
    overflow: hidden;
}

.testimonial {
    padding: 30px;
    background-color: var(--background-gray);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    margin: 0 15px;
    position: relative;
    display: none;
}

.testimonial.active {
    display: block;
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--text-medium);
    margin-bottom: 0;
}

.testimonial-controls {
    text-align: center;
    margin-top: 30px;
}

.testimonial-btn {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    margin: 0 10px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

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

/* Blog Section */
.blog {
    background-color: var(--background-gray);
}

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

.blog-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px;
}

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

.blog-content p {
    color: var(--text-medium);
    margin-bottom: 15px;
}

.read-more {
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    padding-right: 20px;
}

.read-more:after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: right var(--transition-fast);
}

.read-more:hover:after {
    right: -5px;
}

/* Contact Section */
.contact {
    background-color: white;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    margin-top: 5px;
}

.info-item h4 {
    margin-bottom: 5px;
}

.working-hours {
    margin-bottom: 30px;
}

.working-hours h4 {
    margin-bottom: 10px;
}

.working-hours p {
    margin-bottom: 5px;
}

.social-links h4 {
    margin-bottom: 15px;
}

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

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

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

.social-icons img {
    width: 20px;
    height: 20px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

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

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

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    background-color: var(--background-light);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

input:focus, textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 105, 194, 0.1);
    outline: none;
}

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

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

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

.required {
    color: var(--error-color);
}

.error-message {
    color: var(--error-color);
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

/* Footer */
.footer {
    background-color: var(--background-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

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

.footer-nav {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-nav-column {
    flex: 1;
    min-width: 160px;
}

.footer-nav-column h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-nav-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-column li {
    margin-bottom: 10px;
}

.footer-nav-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}


.footer-bottom .social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
}

.cookie-content h3 {
    margin-bottom: 10px;
}

.cookie-content p {
    margin-bottom: 15px;
}

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

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

.modal-content {
    background-color: white;
    max-width: 600px;
    margin: 100px auto;
    padding: 30px;
    border-radius: var(--border-radius-md);
    position: relative;
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
}

.close:hover {
    color: var(--text-dark);
}

.cookie-options {
    margin: 20px 0;
}

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

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option p {
    margin-top: 5px;
    margin-bottom: 0;
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* Thank You Page */
.thank-you {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

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

.thank-you-icon svg {
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.thank-you-content h1 {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thank-you-content p {
    margin-bottom: 30px;
    color: var(--text-medium);
    font-size: 1.1rem;
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Legal Pages */
.legal-section {
    padding: 80px 0;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-header h1 {
    margin-bottom: 10px;
}

.legal-header p {
    color: var(--text-medium);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-content p, .legal-content ul, .legal-content ol {
    margin-bottom: 20px;
    color: var(--text-medium);
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.cookie-table th, .cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--background-gray);
    font-weight: 600;
}

.cookie-settings-button {
    margin-top: 40px;
    text-align: center;
}

/* Blog Article */
.blog-article {
    padding: 80px 0;
}

.article-header {
    margin-bottom: 30px;
}

.article-header h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 15px;
}

.article-meta {
    color: var(--text-medium);
    font-size: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.article-featured-image {
    margin-bottom: 40px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.article-featured-image img {
    width: 100%;
    height: auto;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-intro {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.article-content h2 {
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.article-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.article-content p, .article-content ul, .article-content ol {
    margin-bottom: 20px;
    color: var(--text-medium);
}

.article-content ul li, .article-content ol li {
    margin-bottom: 10px;
}

.article-cta {
    background-color: var(--background-gray);
    padding: 30px;
    border-radius: var(--border-radius-md);
    margin: 50px 0;
    text-align: center;
}

.article-cta h3 {
    margin-bottom: 20px;
}

.article-related {
    margin-top: 60px;
}

.article-related h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

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

.related-article {
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.related-article:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.related-article img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-article h4 {
    padding: 15px;
    font-size: 1rem;
    margin-bottom: 0;
}

.related-article a {
    color: var(--text-dark);
}

.related-article a:hover {
    color: var(--primary-color);
}

/* Address Styling */
address {
    font-style: normal;
    margin-bottom: 20px;
    line-height: 1.8;
}
