

:root {
    
    --primary: #1A365D;
    --secondary: #E2B13C;
    --accent: #2C7A7B;
    --text: #2D3748;
    --light-text: #718096;
    --bg-light: #F7FAFC;
    --bg-white: #FFFFFF;
    --dark: #1A202C;
    --border: #E2E8F0;
    
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}


html {
  box-sizing: border-box;
  overflow-x: hidden;
}

body {
    font-family: 'Barlow', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--bg-white);
}

.bg-primary {
  background-color: var(--primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'PT Serif', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

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

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


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

.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--primary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 3rem;
    height: 3px;
    background-color: var(--secondary);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}


.sticky-header {
    position: sticky;
    top: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.logo img {
    transition: all var(--transition-normal);
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-button {
    cursor: pointer;
    color: var(--primary);
}

.mobile-menu {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border);
    transition: all var(--transition-normal);
}


.hero-section {
    position: relative;
    background-image: url('../images/hero-image.jpg');
    background-size: cover;
    background-position: center;
    color: var(--bg-white);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 54, 93, 0.8);
    z-index: 1;
}


.page-header {
    background-color: var(--primary);
    color: var(--bg-white);
    position: relative;
}


.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--secondary);
    color: var(--dark);
    font-weight: 600;
    border-radius: 0.25rem;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: 2px solid var(--secondary);
}

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

.btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: var(--primary);
    font-weight: 600;
    border-radius: 0.25rem;
    border: 2px solid var(--primary);
    transition: all var(--transition-fast);
    cursor: pointer;
}

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

.btn-white {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--bg-white);
    color: var(--primary);
    font-weight: 600;
    border-radius: 0.25rem;
    border: 2px solid var(--bg-white);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.btn-white:hover {
    background-color: transparent;
    color: var(--bg-white);
}

.btn-outline-white {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 0.25rem;
    border: 2px solid var(--bg-white);
    transition: all var(--transition-fast);
    cursor: pointer;
}

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

.btn-text {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    position: relative;
    transition: all var(--transition-fast);
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-normal);
}

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

.btn-text:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

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


.membership-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-content {
    flex-grow: 1;
}


.service-card {
    padding: 2rem;
    border-radius: 0.5rem;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

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

.service-link {
    color: var(--primary);
    font-weight: 600;
    margin-top: auto;
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-normal);
}

.service-link:hover {
    color: var(--secondary);
}

.service-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


.service-detail {
    padding: 2rem;
    border-radius: 0.5rem;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.service-icon-large {
    width: 5rem;
    height: 5rem;
    background-color: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

.service-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    padding-left: 1.5rem;
}

.service-list li:before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--secondary);
    position: absolute;
    left: 0;
}


.news-card {
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

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

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

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

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

.news-content {
    padding: 1.5rem;
}

.news-date {
    display: block;
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.news-link {
    color: var(--primary);
    font-weight: 600;
    position: relative;
}

.news-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-normal);
}

.news-link:hover {
    color: var(--secondary);
}

.news-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.25rem;
    background-color: var(--bg-white);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

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

.form-group.checkbox input {
    width: auto;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.text-link {
    color: var(--primary);
    text-decoration: underline;
    transition: all var(--transition-fast);
}

.text-link:hover {
    color: var(--secondary);
}


.value-card {
    padding: 2rem;
    border-radius: 0.5rem;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    text-align: center;
}

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

.value-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}


.approach-list {
    list-style-type: none;
    padding-left: 0;
}

.approach-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.approach-number {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}


.expertise-card {
    padding: 2rem;
    border-radius: 0.5rem;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    height: 100%;
}

.expertise-list {
    list-style-type: none;
    padding-left: 0;
}

.expertise-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    padding-left: 1.5rem;
}

.expertise-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--secondary);
    position: absolute;
    left: 0;
}


.unique-card {
    padding: 2rem;
    border-radius: 0.5rem;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    text-align: center;
    height: 100%;
}

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

.unique-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}


.pricing-card {
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.pricing-card.featured {
    border: 2px solid var(--secondary);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--secondary);
    color: var(--dark);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-header {
    padding: 2rem;
    background-color: var(--primary);
    color: var(--bg-white);
    text-align: center;
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-price .currency {
    font-size: 1.25rem;
    font-weight: 500;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.pricing-price .period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-features {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    padding-left: 1.75rem;
}

.pricing-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--secondary);
    position: absolute;
    left: 0;
}

.pricing-footer {
    margin-top: auto;
}


.process-timeline {
    position: relative;
}

.process-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 2rem;
    width: 2px;
    background-color: var(--primary);
}

.process-step {
    position: relative;
    padding-left: 5rem;
    margin-bottom: 3rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 4rem;
    height: 4rem;
    background-color: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 10;
}


.delivery-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.delivery-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}


.faq-item {
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background-color: var(--bg-white);
    border: none;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question i {
    transition: transform var(--transition-normal);
}

.faq-question.active i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-question.active + .faq-answer {
    padding: 0 1.25rem 1.25rem;
    max-height: 1000px;
}


.contact-info-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}


.map-container {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}


.transport-option {
    padding: 1.5rem;
    border-radius: 0.5rem;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.transport-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}


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

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

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


.thank-you-icon {
    color: var(--secondary);
}


.next-step-card {
    padding: 2rem;
    border-radius: 0.5rem;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    text-align: center;
    height: 100%;
}

.next-step-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}


.resource-card {
    padding: 2rem;
    border-radius: 0.5rem;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.resource-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.resource-link {
    color: var(--primary);
    font-weight: 600;
    margin-top: auto;
    position: relative;
}

.resource-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-normal);
}

.resource-link:hover {
    color: var(--secondary);
}

.resource-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


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

.check-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.check-list li:before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--secondary);
    position: absolute;
    left: 0;
    font-size: 1.25rem;
}


footer {
    background-color: var(--dark);
}

.footer-logo {
    filter: brightness(0) invert(1);
}

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

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

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

.footer-links a {
    opacity: 0.8;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 0.5rem;
}


.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    padding: 1.5rem;
    display: none;
}

.cookie-consent.show {
    display: block;
    animation: slideUp 0.5s ease forwards;
}

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

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

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


.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.cookie-settings-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-settings-content {
    background-color: var(--bg-white);
    border-radius: 0.5rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: all var(--transition-normal);
}

.cookie-settings-modal.show .cookie-settings-content {
    transform: translateY(0);
}

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

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

.close-button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light-text);
    transition: all var(--transition-fast);
}

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

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

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

.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;
    gap: 1rem;
}

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

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

.cookie-switch {
    position: relative;
    width: 3rem;
    height: 1.5rem;
    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;
    border-radius: 1rem;
    transition: all var(--transition-fast);
}

.cookie-switch label:before {
    position: absolute;
    content: "";
    height: 1.1rem;
    width: 1.1rem;
    left: 0.2rem;
    bottom: 0.2rem;
    background-color: white;
    border-radius: 50%;
    transition: all var(--transition-fast);
}

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

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

.cookie-switch.disabled {
    opacity: 0.6;
}

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


@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .process-timeline:before {
        left: 1.5rem;
    }
    
    .process-step {
        padding-left: 4rem;
    }
    
    .process-number {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 640px) {
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
    
    .process-timeline:before {
        display: none;
    }
    
    .process-step {
        padding-left: 0;
        padding-top: 5rem;
    }
    
    .process-number {
        left: 50%;
        transform: translateX(-50%);
    }
}