/* 
 * FusionPointAssets.com - Style.css
 * Luxury Premium Design with Immersive 3D UI elements
 */


:root {
    --primary-color: #1E293B;
    --secondary-color: #0F172A;
    --accent-color: #D4AF37;
    --bg-color: #F8FAFC;
    --text-color: #334155;
    --light-accent: #E2E8F0;
    --dark-accent: #0F172A;
    --transition: all 0.3s ease;
    --box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F5E7A3 50%, #D4AF37 100%);
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fira Code', monospace;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
}

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

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

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

.button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-family: 'Fira Code', monospace;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    background-color: var(--primary-color);
    color: #fff;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 41, 59, 0.2);
}

.gold-button {
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: bold;
}

.gold-button:hover {
    background: var(--primary-color);
    color: var(--accent-color);
}

.button.hollow {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.button.hollow:hover {
    background: var(--primary-color);
    color: #fff;
}

.section-header {
    margin-bottom: 3rem;
    position: relative;
}

.section-header:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin: 1rem auto;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

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

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


.perspective-container {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.depth-layer {
    transform: translateZ(0);
    transition: transform 0.5s ease;
}

.depth-layer-1 {
    transform: translateZ(20px);
}

.depth-layer-2 {
    transform: translateZ(40px);
}

.depth-layer-3 {
    transform: translateZ(60px);
}


.glossy-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.05),
        0 15px 35px rgba(30, 41, 59, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    position: relative;
}

.glossy-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transition: all 0.8s ease;
    z-index: 2;
}

.glossy-card:hover:before {
    left: 100%;
}


.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.logo {
    display: inline-block;
}

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

.main-nav .menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-nav .menu li {
    margin-left: 1.5rem;
}

.main-nav .menu a {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav .menu a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.main-nav .menu a:hover:after,
.main-nav .menu a.active:after {
    width: 100%;
}

.menu-icon {
    font-size: 1.5rem;
    background: transparent;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
}


.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--primary-color);
    z-index: 1001;
    padding: 2rem;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
}

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

.close-button-container {
    text-align: right;
    margin-bottom: 2rem;
}

.close-button {
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-menu .menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.mobile-menu .menu li {
    margin-bottom: 1rem;
}

.mobile-menu .menu a {
    color: white;
    font-size: 1.2rem;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .menu a:hover,
.mobile-menu .menu a.active {
    color: var(--accent-color);
}


.hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: relative;
    z-index: 1;
}

.hero-bg:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-image.jpg') center/cover no-repeat;
    opacity: 0.15;
    z-index: -1;
}

.hero-content {
    padding: 2rem 0;
}

.hero-title {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-image-container {
    position: relative;
    height: 400px;
    perspective: 1000px;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transform: rotateY(-15deg) translateZ(50px);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: rotateY(0) translateZ(70px);
}

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


.about-section {
    padding: 5rem 0;
    background: var(--bg-color);
}

.about-image-container {
    position: relative;
    perspective: 1000px;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transform: rotateY(5deg);
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: rotateY(0);
}

.about-content {
    padding: 2rem 0;
}

.about-content h2 {
    margin-bottom: 1.5rem;
    position: relative;
}

.about-content h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}


.services-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #F8FAFC, #E2E8F0);
    position: relative;
}

.service-card {
    margin-bottom: 2rem;
}

.service-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background-color: white;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-section {
    padding: 1.5rem;
}

.card-section h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 500;
    color: var(--accent-color);
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}


.news-section {
    padding: 5rem 0;
    background-color: white;
}

.news-item {
    padding: 1.5rem;
    border-radius: 10px;
    background-color: var(--bg-color);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.news-date {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.news-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}


.contact-form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    color: white;
}

.contact-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-item i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    margin-right: 1rem;
}

.form-container {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

form label {
    color: white;
    font-weight: 500;
}

form input, form textarea, form select {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 4px;
    padding: 0.8rem;
    color: white !important;
    margin-bottom: 1.5rem;
    width: 100%;
}

form input:focus, form textarea:focus, form select:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    outline: none;
}

label a {
  color: white;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

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

.checkbox-container label {
    font-weight: 300;
    font-size: 0.9rem;
}


.site-footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0 1rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

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

.site-footer h4 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
}

.site-footer h4:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact i {
    color: var(--accent-color);
    width: 20px;
    margin-right: 10px;
}

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

.copyright {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 1.5rem;
    font-size: 0.9rem;
}

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


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    backdrop-filter: blur(10px);
    display: none;
}

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

.cookie-content h3 {
    color: white;
    margin-bottom: 1rem;
}

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


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

.cookie-modal-content {
    background-color: white;
    max-width: 600px;
    margin: 5% auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.cookie-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-accent);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    margin-bottom: 0;
}

.cookie-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-accent);
}

.cookie-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cookie-category-header h4 {
    margin-bottom: 0.5rem;
}

.cookie-category-header p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    margin-left: 1rem;
    flex-shrink: 0;
}

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

.cookie-switch label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.cookie-switch label:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.cookie-switch input:checked + label {
    background-color: var(--accent-color);
}

.cookie-switch input:checked + label:before {
    transform: translateX(26px);
}

.cookie-switch.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--light-accent);
    text-align: right;
}


.page-header {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.page-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-image.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.page-header h1 {
    color: white;
    position: relative;
    z-index: 1;
}

.page-header .lead {
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}


.main-content {
    padding: 5rem 0;
}

.content-block {
    margin-bottom: 3rem;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-image {
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: var(--box-shadow);
}


.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-block {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
}

.sidebar-block h3 {
    margin-bottom: 1.5rem;
    position: relative;
}

.sidebar-block h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}


.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--light-accent);
    padding-bottom: 1rem;
}

.faq-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

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

.faq-question h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 500;
    flex: 1;
}

.faq-toggle {
    color: var(--accent-color);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding-top: 1rem;
}

.faq-item.active .faq-answer {
    display: block;
}


.articles-list {
    margin-top: 2rem;
}

.article-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--light-accent);
}

.article-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.article-item h3 {
    margin-bottom: 1rem;
}

.article-meta {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--accent-color);
}


.service-block {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
    flex-direction: column;
}

.service-block:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.5rem;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    margin-bottom: 1rem;
}

.service-content ul {
    margin-left: 1.5rem;
    margin-bottom: 0;
}


.principles-intro {
    margin-bottom: 4rem;
}

.principles-image {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
}

.principle-item {
    display: flex;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.principle-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-right: 2rem;
    flex-shrink: 0;
}

.principle-content {
    flex: 1;
}

.principle-content h2 {
    margin-bottom: 1rem;
}


.success-stories {
    margin-top: 4rem;
}

.story-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    height: 100%;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.story-author {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-accent);
}


.what-we-do-intro {
    margin-bottom: 4rem;
}

.what-we-do-image {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
}

.service-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 1.5rem;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.service-block:hover .service-image img {
    transform: scale(1.05);
}


.case-studies {
    margin-top: 4rem;
}

.case-study-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    height: 100%;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
}

.case-study-content h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.case-meta {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.case-meta span {
    font-weight: 500;
    color: var(--primary-color);
}

.case-description {
    margin: 1.5rem 0;
}

.case-result {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-accent);
}

.case-result h4 {
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}


.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-image.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-section .button {
    position: relative;
    z-index: 1;
}


.contact-content {
    padding: 5rem 0;
}

.contact-info-block, .contact-form-block {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-details .contact-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact-text {
    flex: 1;
}

.contact-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-text p {
    margin-bottom: 0;
}

.contact-image {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 2rem;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
}

.map-section {
    padding-bottom: 5rem;
}

.map-section h2 {
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}


.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content ul, .legal-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.cookie-table th, .cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--light-accent);
}

.cookie-table th {
    background-color: var(--light-accent);
    font-weight: 500;
}


.thank-you-section {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

.thank-you-content {
    background-color: white;
    border-radius: 10px;
    padding: 3rem 2rem;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
}

.thank-you-content h1 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thank-you-content .lead {
    margin-bottom: 1.5rem;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.articles-section {
    padding: 5rem 0;
    background-color: white;
}

.articles-section h2 {
    margin-bottom: 3rem;
}

.article-card {
    background-color: var(--bg-color);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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


.iti {
    width: 100%;
}


@media screen and (max-width: 39.9375em) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-image-container {
        height: 250px;
        margin-top: 2rem;
    }
    
    .hero-image {
        transform: none;
    }
    
    .about-section, .services-section, .news-section, .contact-form-section {
        padding: 3rem 0;
    }
    
    .about-content {
        text-align: center;
        margin-top: 2rem;
    }
    
    .about-content h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .principle-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .principle-icon {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .service-block {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .contact-info-block, .contact-form-block {
        margin-bottom: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links a {
        margin: 0 0.75rem;
    }
    
    .site-footer h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .site-footer h4, .site-footer p, .footer-menu {
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons .button {
        width: 100%;
    }
    
    .cookie-category-header {
        flex-direction: column;
    }
    
    .cookie-switch {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .contact-details .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .button-group {
        flex-direction: column;
    }
    
    .button-group .button {
        width: 100%;
    }
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
    .hero-image-container {
        height: 300px;
    }
    
    .principle-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-right: 1.5rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-right: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}