/* 
* Atomicvaultcapital - Corporate Investment Management Consulting
* Main Stylesheet
*/


:root {
    --primary: #2E5984;
    --primary-dark: #1F3D5A;
    --primary-light: #4275A5;
    --secondary: #F58634;
    --secondary-dark: #D96E20;
    --secondary-light: #FF9F5C;
    --accent: #1ABC9C;
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --bg-light: #F9FBFD;
    --bg-dark: #172B4D;
    --border: #E1E5EA;
    --success: #27AE60;
    --warning: #F39C12;
    --error: #E74C3C;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

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

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

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

.ui.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5em;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    h4 {
        font-size: 1.25rem;
    }
    
    h5 {
        font-size: 1.1rem;
    }
    
    h6 {
        font-size: 1rem;
    }
}


.ui.button {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    border-radius: 4px;
    transition: var(--transition);
}

.ui.button.primary {
    background-color: var(--primary);
    color: var(--white);
}

.ui.button.primary:hover {
    background-color: var(--primary-dark);
}

.ui.button.secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.ui.button.secondary:hover {
    background-color: var(--secondary-dark);
}

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

.ui.button.tertiary:hover {
    background-color: var(--bg-light);
}


header.ui.menu {
    background-color: var(--white);
    box-shadow: var(--shadow);
    border: none;
    height: 80px;
    padding: 0;
    z-index: 1000;
}

header .header.item {
    padding: 0 1rem;
    display: flex;
    align-items: center;
}

header .logo {
    height: 40px;
    margin-right: 0.5rem;
}

header .brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

header .menu .item {
    font-weight: 600;
    color: var(--text-dark);
    padding: 0 1.2rem;
    height: 80px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

header .menu .item:hover,
header .menu .item.active {
    background-color: transparent;
    color: var(--primary);
}

header .menu .item.active {
    border-bottom: 3px solid var(--primary);
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-dark);
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

.mobile-menu {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 999;
    padding: 1rem 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu .ui.vertical.menu {
    box-shadow: none;
    border: none;
    width: 100%;
}

.mobile-menu .ui.vertical.menu .item {
    padding: 1rem 2rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.mobile-menu .ui.vertical.menu .item:hover,
.mobile-menu .ui.vertical.menu .item.active {
    background-color: var(--bg-light);
    color: var(--primary);
    border-left: 3px solid var(--primary);
}

@media (max-width: 991px) {
    .desktop-menu {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
    }
    
    .mobile-menu {
        display: block;
    }
}


.page-header {
    background-color: var(--bg-light);
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.breadcrumbs {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--text-medium);
}

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


.hero-section {
    padding: 140px 0 80px;
    background-color: var(--bg-light);
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

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

.hero-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

@media (max-width: 991px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .hero-text, .hero-image {
        max-width: 100%;
    }
}


.interactive-banner {
    padding: 80px 0;
}

.banner-panel {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.banner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: var(--primary);
    color: var(--white);
}

.banner-header h3 {
    margin: 0;
    color: var(--white);
}

.banner-controls {
    display: flex;
    gap: 10px;
}

.banner-control {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.banner-control:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.banner-content {
    padding: 30px;
    position: relative;
    min-height: 200px;
}

.banner-item {
    display: none;
    animation: fadeIn 0.5s ease;
}

.banner-item.active {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.banner-icon {
    font-size: 2.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.banner-text h4 {
    margin-bottom: 1rem;
}

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

@media (max-width: 768px) {
    .banner-item.active {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .banner-icon {
        margin-bottom: 1rem;
    }
}


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

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

.section-header h2 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

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

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 300px;
}

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

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
    justify-content: center;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-content h3 {
    margin-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .about-image {
        margin-bottom: 30px;
    }
}


.services-section {
    padding: 80px 0;
}

.ui.cards {
    margin-top: 0;
}

.ui.cards .card {
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.ui.cards .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.ui.cards .card .image {
    height: 200px;
}

.ui.cards .card .image img {
    height: 100%;
    object-fit: cover;
}

.ui.cards .card .content .header {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.ui.cards .card .content .description {
    color: var(--text-medium);
}

.ui.cards .card .extra.content {
    border-top: 1px solid var(--border);
    padding: 0.75em 1em;
}


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

.contact-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.contact-info p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item i {
    font-size: 1.25rem;
    color: var(--primary);
}

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

.ui.form .field label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ui.form .field input,
.ui.form .field textarea,
.ui.form .field select {
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.8em 1em;
    transition: var(--transition);
}

.ui.form .field input:focus,
.ui.form .field textarea:focus,
.ui.form .field select:focus {
    border-color: var(--primary);
}

.ui.checkbox label {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.ui.checkbox label a {
    color: var(--primary);
    text-decoration: underline;
}

.ui.checkbox label a:hover {
    color: var(--primary-dark);
}


.iti {
    width: 100%;
}


.thanks-section {
    padding: 140px 0 80px;
    text-align: center;
}

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

.thanks-icon {
    font-size: 5rem;
    color: var(--success);
    margin-bottom: 1.5rem;
}

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

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.next-steps {
    background-color: var(--bg-light);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 2rem;
    text-align: left;
}

.next-steps h3 {
    margin-bottom: 1rem;
}

.next-steps ul {
    list-style-type: none;
}

.next-steps ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.75rem;
}

.next-steps ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success);
}

.return-home {
    margin-top: 2rem;
}


.team-intro-section {
    padding: 80px 0;
}

.team-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 300px;
}

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

.team-intro-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-intro-content h2 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.team-intro-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.team-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-medium);
    font-weight: 600;
}

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

.our-approach-section {
    padding: 80px 0;
}

.approach-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 400px;
}

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

.approach-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.approach-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.approach-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.approach-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.approach-icon {
    font-size: 1.75rem;
    color: var(--primary);
    flex-shrink: 0;
}

.approach-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}


.services-overview-section {
    padding: 80px 0;
}

.services-overview-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 300px;
}

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

.services-overview-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-overview-content h2 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.services-overview-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.key-benefits {
    margin-top: 2rem;
}

.key-benefits h3 {
    margin-bottom: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--bg-light);
    padding: 15px;
    border-radius: 6px;
    transition: var(--transition);
}

.benefit-item:hover {
    background-color: var(--primary);
    color: var(--white);
}

.benefit-item i {
    color: var(--primary);
}

.benefit-item:hover i {
    color: var(--white);
}

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

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
}

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

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

.service-content ul {
    list-style-type: none;
    padding-left: 0;
}

.service-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.75rem;
}

.service-content ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

.case-studies-section {
    padding: 80px 0;
}

.case-study-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    height: 100%;
}

.case-study-header {
    background-color: var(--primary);
    color: var(--white);
    padding: 20px;
}

.case-study-header h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.case-study-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
}

.case-study-content {
    padding: 20px;
}

.case-study-content h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.case-study-content p {
    margin-bottom: 1rem;
}

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

.methodology-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 400px;
}

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

.methodology-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.methodology-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.methodology-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    opacity: 0.5;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}


.activities-overview-section {
    padding: 80px 0;
}

.activities-overview-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 300px;
}

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

.activities-overview-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.activities-overview-content h2 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.activities-overview-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.activity-item {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 20px;
    transition: var(--transition);
}

.activity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.activity-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.activity-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

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

.services-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.service-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.service-header:hover {
    background-color: rgba(46, 89, 132, 0.05);
}

.service-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-header h3 i {
    color: var(--primary);
}

.toggle-icon {
    font-size: 1.25rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-item.active .toggle-icon {
    transform: rotate(180deg);
}

.service-content {
    padding: 0 20px;
    height: fit-content;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.service-item.active .service-content {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.diversification-strategies-section {
    padding: 80px 0;
}

.strategy-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    height: 100%;
    margin-bottom: 30px;
}

.strategy-header {
    background-color: var(--primary);
    padding: 20px;
}

.strategy-header h3 {
    color: var(--white);
    margin: 0;
}

.strategy-content {
    padding: 20px;
}

.strategy-content p {
    margin-bottom: 1.5rem;
}

.strategy-content h4 {
    color: var(--primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.strategy-content ul {
    margin-bottom: 1.5rem;
}

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

.strategy-content ul li strong {
    color: var(--primary);
}


.contact-section {
    padding: 80px 0;
}

.contact-info-card {
    background-color: var(--primary);
    color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 40px;
    height: 100%;
}

.contact-info-card h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-info-card p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.contact-text h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

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

.contact-form-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 40px;
    height: 100%;
}

.contact-form-card h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-form-card p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

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

.faq-section {
    padding: 80px 0;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.faq-question:hover {
    background-color: rgba(46, 89, 132, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.25rem;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer ol, .faq-answer ul {
    margin-bottom: 1rem;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}


.cta-section {
    padding: 80px 0;
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
}

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

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .ui.button.primary {
    background-color: var(--white);
    color: var(--primary);
}

.cta-section .ui.button.primary:hover {
    background-color: var(--bg-light);
}


.policy-content-section {
    padding: 120px 0 80px;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-meta {
    margin-bottom: 2rem;
    color: var(--text-medium);
    font-style: italic;
}

.policy-introduction {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.policy-section h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-section h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-section p {
    margin-bottom: 1rem;
}

.policy-section ul, .policy-section ol {
    margin-bottom: 1.5rem;
    padding-left: 20px;
}

.policy-section li {
    margin-bottom: 0.75rem;
}

.policy-section a {
    color: var(--primary);
    text-decoration: underline;
}

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


.site-footer {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

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

.footer-logo h3 {
    color: var(--white);
    margin: 0;
}

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

.site-footer h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.site-footer .ui.link.list .item {
    padding: 0.5em 0;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.site-footer .ui.link.list .item:hover {
    color: var(--white);
}

.site-footer .ui.list .item {
    padding: 0.5em 0;
}

.site-footer .ui.list .item i {
    color: var(--secondary);
}

.site-footer .ui.list .item .content {
    color: rgba(255, 255, 255, 0.7);
}

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


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

.cookie-content h3 {
    margin-bottom: 0.5rem;
}

.cookie-content p {
    margin-bottom: 1rem;
}

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

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background-color: var(--white);
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    padding: 30px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

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

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

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

.cookie-option {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.cookie-option input {
    margin-top: 5px;
    margin-right: 10px;
}

.cookie-option label {
    display: flex;
    flex-direction: column;
}

.option-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.option-description {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.cookie-settings-buttons {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}


@media (max-width: 991px) {
    section {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
}

@media (max-width: 768px) {
    .ui.stackable.grid > .column:not(.row) {
        padding: 1rem 0 !important;
    }
    
    .ui.container {
        width: 95%;
    }
    
    .contact-info-card, .contact-form-card {
        padding: 30px;
    }
    
    .policy-content-section {
        padding: 100px 0 60px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 0;
    }
    
    .hero-section {
        padding: 100px 0 40px;
    }
    
    .page-header {
        padding: 90px 0 30px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .cookie-modal-content {
        padding: 20px;
    }
}