/* 
   Main Stylesheet for RemontyPro Website
   Version: 1.0
   Date: 2023-10-01
*/

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

a {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0d47a1;
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

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

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    color: #212529;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 2rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: #1a73e8;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #0d47a1;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: #f8f9fa;
    color: #1a73e8;
    border: 1px solid #1a73e8;
}

.btn-secondary:hover {
    background-color: #e9ecef;
    color: #0d47a1;
    border-color: #0d47a1;
}

.btn-tertiary {
    background-color: transparent;
    color: #6c757d;
    text-decoration: underline;
}

.btn-tertiary:hover {
    color: #343a40;
}

.btn-contact {
    background-color: #f8f9fa;
    color: #1a73e8;
    padding: 8px 16px;
    border-radius: 4px;
}

/* ===== Header ===== */
.main-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-container {
    width: 200px;
}

.logo {
    display: block;
}

.main-nav .nav-links {
    display: flex;
    list-style: none;
    margin: 0;
}

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

.main-nav .nav-links a {
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.main-nav .nav-links a:hover,
.main-nav .nav-links a.active {
    color: #1a73e8;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    color: #333;
}

/* ===== Banner Section ===== */
.banner {
    padding: 60px 0;
    background-color: #f0f8ff;
    border-bottom: 1px solid #e9ecef;
}

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

.banner-content {
    width: 50%;
}

.banner-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #212529;
}

.banner-content p {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 2rem;
}

.banner-buttons {
    display: flex;
    gap: 15px;
}

.banner-image {
    width: 50%;
    text-align: right;
}

/* ===== Services Section ===== */
.services {
    padding: 60px 0;
    background-color: white;
    border-bottom: 1px solid #e9ecef;
}

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

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #212529;
}

.section-header p {
    font-size: 1.1rem;
    color: #6c757d;
}

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

.service-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    margin-bottom: 20px;
    color: #1a73e8;
}

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

.service-card p {
    color: #6c757d;
    margin-bottom: 20px;
}

.read-more {
    font-weight: 500;
    color: #1a73e8;
}

.read-more:hover {
    text-decoration: underline;
}

.services-cta {
    text-align: center;
}

/* ===== About Section ===== */
.about {
    padding: 60px 0;
    background-color: #f0f8ff;
    border-bottom: 1px solid #e9ecef;
}

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

.about-text {
    max-width: 800px;
    text-align: center;
}

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

.about-stats {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin: 40px 0;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 60px 0;
    background-color: white;
    border-bottom: 1px solid #e9ecef;
}

.testimonials-slider {
    position: relative;
    display: flex;
    overflow: hidden;
    margin-bottom: 30px;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin: 0 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: #212529;
}

.author-location {
    color: #6c757d;
    font-size: 0.9rem;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.prev-btn, .next-btn {
    background-color: #f8f9fa;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background-color: #e9ecef;
}

/* ===== Blog Preview Section ===== */
.blog-preview {
    padding: 60px 0;
    background-color: #f0f8ff;
    border-bottom: 1px solid #e9ecef;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.blog-content {
    padding: 20px 15px;

}

.blog-date {
    display: block;
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 10px;
}

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

.blog-content p {
    color: #6c757d;
    margin-bottom: 15px;
}

.blog-cta {
    text-align: center;
}

/* ===== Newsletter Section ===== */
.newsletter {
    padding: 60px 0;
    background-color: #1a73e8;
    border-bottom: 1px solid #e9ecef;
}

.newsletter-content {
    text-align: center;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: white;
    margin-bottom: 15px;
}

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

#newsletter-form {
    display: flex;
    margin-bottom: 15px;
}

#newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

#newsletter-form button {
    border-radius: 0 4px 4px 0;
}

.newsletter-privacy {
    font-size: 0.8rem;
    opacity: 0.8;
}

.newsletter-privacy a {
    color: white;
    text-decoration: underline;
}

/* ===== Contact CTA Section ===== */
.contact-cta {
    padding: 60px 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 15px;
}

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

/* ===== Footer ===== */
.main-footer {
    background-color: #212529;
    color: white;
    padding: 60px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-contact p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #adb5bd;
}

.footer-links {
    display: flex;
    justify-content: space-between;
}

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

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

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

.footer-links-column ul li a {
    color: #adb5bd;
    transition: color 0.3s ease;
}

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: #adb5bd;
}



.modal-content {
    background-color: white;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6c757d;
}

.modal-body {
    padding: 20px;
}

.cookie-option {
    margin-bottom: 20px;
}

.cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-option-header h4 {
    margin: 0;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #1a73e8;
}

input:focus + .slider {
    box-shadow: 0 0 1px #1a73e8;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid #e9ecef;
    text-align: right;
}

/* ===== Page Header ===== */
.page-header {
    background-color: #f0f8ff;
    padding: 60px 0;
    border-bottom: 1px solid #e9ecef;
}

.page-header-content {
    text-align: center;
}

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

.page-header-content p {
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== Contact Page ===== */
.contact-section {
    padding: 60px 0;
    background-color: white;
    border-bottom: 1px solid #e9ecef;
}

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

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-icon {
    color: #1a73e8;
    margin-bottom: 15px;
}

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

.info-card p {
    color: #6c757d;
    margin-bottom: 5px;
}

.contact-form-container {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-form-container h2 {
    margin-bottom: 10px;
}

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

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
}

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

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

.form-submit {
    margin-top: 20px;
}

.form-note {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 10px;
}

.map-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* ===== Blog Page ===== */
.blog-content {
    padding: 60px 15px;
    background-color: white;
    border-bottom: 1px solid #e9ecef;
}

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

.blog-main {
    display: grid;
    gap: 30px;
}

.blog-card.large {
    display: flex;
    flex-direction: column;
}

.blog-card.large .blog-image {
    height: 300px;
}

.blog-sidebar {
    display: grid;
    gap: 30px;
}

.sidebar-widget {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-widget h3 {
    margin-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 10px;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list li a {
    display: block;
    padding: 5px 0;
    border-bottom: 1px solid #e9ecef;
    color: #6c757d;
    transition: color 0.3s ease;
}

.category-list li a:hover {
    color: #1a73e8;
}

.cta-section {
    padding-bottom: 32px;
}

.popular-posts {
    display: grid;
    gap: 15px;
}

.popular-post a {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
}

.post-date {
    font-size: 0.8rem;
    color: #6c757d;
}

#sidebar-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ===== Blog Article ===== */
.blog-article {
    padding: 60px 0;
    background-color: white;
    border-bottom: 1px solid #e9ecef;
}

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

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #6c757d;
}

.article-author {
    font-style: italic;
    color: #6c757d;
}

.article-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.article-content h2,
.article-content h3 {
    margin-top: 2rem;
}

.article-content ul,
.article-content ol {
    margin-left: 20px;
    margin-bottom: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-cta {
    display: flex;
    gap: 15px;
    margin: 40px 0;
}

.article-tags {
    margin: 30px 0;
}

.article-tags span {
    font-weight: 500;
    margin-right: 10px;
}

.article-tags a {
    display: inline-block;
    padding: 5px 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    background-color: #f8f9fa;
    border-radius: 4px;
    color: #6c757d;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.article-tags a:hover {
    background-color: #e9ecef;
    color: #212529;
}

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

.article-share span {
    font-weight: 500;
    margin-right: 15px;
}

.article-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f8f9fa;
    border-radius: 50%;
    margin-right: 10px;
    color: #6c757d;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.article-share a:hover {
    background-color: #e9ecef;
    color: #212529;
}

.related-articles {
    margin-bottom: 40px;
}

.related-articles h3 {
    text-align: center;
    margin-bottom: 20px;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.related-article {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.related-article-img {
    height: 200px;
    overflow: hidden;
}

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

.article-newsletter {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.article-newsletter h3 {
    margin-bottom: 10px;
}

.article-newsletter p {
    margin-bottom: 20px;
}

#article-newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

#article-newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

#article-newsletter-form button {
    border-radius: 0 4px 4px 0;
}

/* ===== Services Page ===== */
.services-intro {
    padding: 40px 0;
    background-color: white;
    border-bottom: 1px solid #e9ecef;
}

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

.service-detail {
    padding: 60px 0;
    background-color: white;
    border-bottom: 1px solid #e9ecef;
}

.service-detail.alternate {
    background-color: #f8f9fa;
}

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

.service-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.service-text h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.service-text ul {
    margin-bottom: 20px;
    list-style-position: outside;
    padding-left: 20px;
}

.service-text li {
    margin-bottom: 10px;
}

.service-cta {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.additional-services {
    padding: 60px 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.additional-services .section-header {
    margin-bottom: 30px;
}

.additional-list {
    max-width: 800px;
    margin: 0 auto;
}

.additional-list ul {
    list-style-position: outside;
    padding-left: 20px;
}

.additional-list li {
    margin-bottom: 15px;
}

.additional-cta {
    text-align: center;
    margin-top: 30px;
}

/* ===== About Page ===== */
.about-story {
    padding: 60px 0;
    background-color: white;
    border-bottom: 1px solid #e9ecef;
}

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

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.mission-values {
    padding: 60px 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

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

.value-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-icon {
    color: #1a73e8;
    margin-bottom: 15px;
}

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

.team-section {
    padding: 60px 0;
    background-color: white;
    border-bottom: 1px solid #e9ecef;
}

.section-header.centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.team-member {
    text-align: center;
}

.member-image {
    border-radius: 50%;
    overflow: hidden;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.member-info h3 {
    margin-bottom: 5px;
}

.member-position {
    color: #1a73e8;
    font-weight: 500;
    margin-bottom: 10px;
}

.member-desc {
    color: #6c757d;
}

.why-choose-us {
    padding: 60px 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    color: #1a73e8;
    margin-bottom: 15px;
}

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

.certificates {
    padding: 60px 0;
    background-color: white;
    border-bottom: 1px solid #e9ecef;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.certificate-card {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.certificate-image {
    flex: 0 0 150px;
    margin-right: 20px;
}

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

/* ===== Legal Pages ===== */
.legal-header {
    background-color: #f0f8ff;
}

.legal-content {
    padding: 60px 0;
    background-color: white;
    border-bottom: 1px solid #e9ecef;
}

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

.last-update {
    font-style: italic;
    color: #6c757d;
    margin-bottom: 30px;
    text-align: right;
}

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

.legal-section h2 {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.legal-section h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-section ul,
.legal-section ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

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

/* ===== Thanks Page ===== */
.thanks-section {
    padding: 100px 0;
    text-align: center;
    background-color: white;
    border-bottom: 1px solid #e9ecef;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    color: #28a745;
    margin-bottom: 30px;
}

.thanks-content h1 {
    margin-bottom: 20px;
}

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

.thanks-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

.margin-bottom-lg {
    margin-bottom: 4rem;
}

.margin-bottom-md {
    margin-bottom: 2rem;
}

.margin-bottom-sm {
    margin-bottom: 1rem;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px;
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.cookie-header h3 {
    font-size: 1.25rem;
}

.cookie-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-color);
    transition: color .3s ease-in-out;
}

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

.cookie-content>p {
    margin-bottom: var(--spacing-lg);
}

.cookie-options {
    margin-bottom: var(--spacing-lg);
}

.cookie-option {
    margin-bottom: var(--spacing-md);
}

.cookie-option input {
    margin-right: var(--spacing-sm);
    vertical-align: middle;
}

.cookie-option label {
    font-weight: 600;
    display: inline;
    vertical-align: middle;
}

.cookie-description {
    margin-top: var(--spacing-xs);
    font-size: var(--font-size-sm);
    color: var(--gray-color);
    margin-left: calc(var(--spacing-md) + 14px);
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.cookie-footer {
    font-size: var(--font-size-sm);
    color: var(--gray-color);
}

.cookie-visible {
    display: block;
}

@media screen and (max-width: 768px) {


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

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