:root {
    --primary-color: #2D6356;
    --accent-1: #32517A;
    --accent-2: #96364C;
    --light-bg: #F8FAFB;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #6B7280;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-1));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-content svg {
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.loading-text h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}

.loading-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}

/* SVG Stroke Animation */
svg .svg-elem-1 {
    stroke-dashoffset: 2912.817626953125px;
    stroke-dasharray: 2912.817626953125px;
    -webkit-transition: stroke-dashoffset 1.8s cubic-bezier(0.6, 0.04, 0.98, 0.335) 0s;
    transition: stroke-dashoffset 1.8s cubic-bezier(0.6, 0.04, 0.98, 0.335) 0s;
}

svg.active .svg-elem-1 {
    stroke-dashoffset: 0;
}

svg.reverse .svg-elem-1 {
    stroke-dashoffset: 2912.817626953125px;
    -webkit-transition: stroke-dashoffset 1.8s cubic-bezier(0.37, 0, 0.63, 1) 0s;
    transition: stroke-dashoffset 1.8s cubic-bezier(0.37, 0, 0.63, 1) 0s;
}

/* Prevent scrolling while loading */
body.loading {
    overflow: hidden;
}

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

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

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

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(248, 250, 251, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(45, 99, 86, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-brand .logo {
    height: 60px;
    width: auto;
    background: transparent;
}

/* Override SVG background rectangle */
.nav-brand .logo rect[fill="#1E1E1E"] {
    fill: transparent !important;
    display: none;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.mobile-menu-button {
    display: none;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.cta-button {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--accent-1);
    transform: translateY(-2px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--light-bg) 0%, rgba(45, 99, 86, 0.05) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.animate-word {
    display: inline-block;
    opacity: 0;
    animation: slideInUp 0.8s ease forwards;
}

.animate-word:nth-child(1) { animation-delay: 0.1s; }
.animate-word:nth-child(2) { animation-delay: 0.2s; }
.animate-word:nth-child(3) { animation-delay: 0.3s; }
.animate-word:nth-child(4) { animation-delay: 0.4s; }

.highlight {
    color: var(--accent-2);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.development-timeline {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    align-items: center;
    justify-content: center;
}

.milestone {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 140px;
}

.timeline-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0 0.5rem;
    opacity: 0.6;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.milestone-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.milestone-completed .milestone-icon {
    background: var(--primary-color);
    color: var(--white);
}


.milestone-upcoming .milestone-icon {
    background: rgba(45, 99, 86, 0.1);
    color: var(--primary-color);
    border: 2px solid rgba(45, 99, 86, 0.3);
}

.milestone-future .milestone-icon {
    background: rgba(45, 99, 86, 0.1);
    color: var(--primary-color);
    border: 2px solid rgba(45, 99, 86, 0.3);
}

.milestone-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.milestone-content p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.milestone-completed .milestone-content h4 {
    color: var(--primary-color);
}

.milestone-current {
    position: relative;
}

.milestone-current .milestone-icon {
    background: var(--accent-1);
    color: var(--white);
    box-shadow: 0 0 20px rgba(50, 81, 122, 0.4);
    transform: scale(1.1);
    position: relative;
}

.milestone-current .milestone-content h4 {
    color: var(--accent-1);
    font-weight: 700;
}

@keyframes spin-loader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.milestone-current::after {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
    border-radius: 50%;
    animation: spin-loader 0.8s linear infinite;
    background: var(--accent-1);
}

.milestone-upcoming .milestone-content h4 {
    color: var(--text-dark);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(150, 54, 76, 0.4);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 0 30px rgba(150, 54, 76, 0.8), 0 0 0 15px rgba(150, 54, 76, 0);
    }
}

.hero-cta {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
}

.cta-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: var(--accent-1);
    transform: translateY(-2px);
}

.cta-secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-cards {
    position: relative;
    height: 100%;
}

.card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
    opacity: 0;
    animation: floatIn 1s ease forwards, float 6s ease-in-out infinite 1s;
}

.card-1 {
    top: 5%;
    left: 5%;
    animation-delay: 0.5s;
    background: linear-gradient(135deg, var(--white) 0%, rgba(45, 99, 86, 0.05) 100%);
    animation: floatIn 1s ease forwards 0.5s, float 8s ease-in-out infinite 1.5s;
}

.card-2 {
    top: 15%;
    right: 15%;
    animation-delay: 0.7s;
    background: linear-gradient(135deg, var(--white) 0%, rgba(50, 81, 122, 0.05) 100%);
    animation: floatIn 1s ease forwards 0.7s, floatAlt 7s ease-in-out infinite 1.7s;
}

.card-3 {
    top: 35%;
    left: 15%;
    animation-delay: 0.9s;
    background: linear-gradient(135deg, var(--white) 0%, rgba(150, 54, 76, 0.05) 100%);
    animation: floatIn 1s ease forwards 0.9s, floatGentle 9s ease-in-out infinite 1.9s;
}

.card-4 {
    top: 50%;
    right: 5%;
    animation-delay: 1.1s;
    background: linear-gradient(135deg, var(--white) 0%, rgba(45, 99, 86, 0.08) 100%);
    animation: floatIn 1s ease forwards 1.1s, floatAlt 6s ease-in-out infinite 2.1s;
}

.card-5 {
    bottom: 25%;
    left: 25%;
    animation-delay: 1.3s;
    background: linear-gradient(135deg, var(--white) 0%, rgba(50, 81, 122, 0.08) 100%);
    animation: floatIn 1s ease forwards 1.3s, float 7.5s ease-in-out infinite 2.3s;
}

.card-6 {
    bottom: 10%;
    right: 25%;
    animation-delay: 1.5s;
    background: linear-gradient(135deg, var(--white) 0%, rgba(150, 54, 76, 0.08) 100%);
    animation: floatIn 1s ease forwards 1.5s, floatGentle 8.5s ease-in-out infinite 2.5s;
}

.card-7 {
    bottom: 35%;
    left: 5%;
    animation-delay: 1.7s;
    background: linear-gradient(135deg, var(--white) 0%, rgba(45, 99, 86, 0.06) 100%);
    animation: floatIn 1s ease forwards 1.7s, floatAlt 9.5s ease-in-out infinite 2.7s;
}

.card .material-icons {
    font-size: 2rem;
    color: var(--primary-color);
}

.why-section {
    padding: 5rem 0;
    background: var(--white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: var(--light-bg);
    transition: transform 0.3s ease;
}

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

.benefit .material-icons {
    font-size: 3rem;
    color: var(--accent-2);
    margin-bottom: 1rem;
}

.benefit h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-header .material-icons {
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

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

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(45, 99, 86, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-2);
    font-weight: bold;
}

.feature-list li:last-child {
    border-bottom: none;
}

.coming-soon {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-1) 100%);
    color: var(--white);
}

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

.coming-soon .material-icons {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.8;
}

.coming-soon h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.coming-soon p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.early-access {
    padding: 5rem 0;
    background: var(--white);
    text-align: center;
}

.early-access h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.early-access p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.launch-info {
    display: flex;
    justify-content: center;
}

.launch-date {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.launch-date .material-icons {
    font-size: 3rem;
    color: var(--accent-2);
}

.launch-date h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact {
    padding: 5rem 0;
    background: var(--light-bg);
}

.contact h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    min-height: 100px;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item .material-icons {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: var(--accent-1);
    text-decoration: none;
    font-weight: 500;
    word-break: break-all;
    line-height: 1.4;
}

.contact-item a:hover {
    text-decoration: underline;
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    opacity: 0.8;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0px, 0px);
    }
    25% {
        transform: translate(5px, -10px);
    }
    50% {
        transform: translate(-8px, -15px);
    }
    75% {
        transform: translate(3px, -5px);
    }
}

@keyframes floatAlt {
    0%, 100% {
        transform: translate(0px, 0px);
    }
    25% {
        transform: translate(-7px, -8px);
    }
    50% {
        transform: translate(10px, -12px);
    }
    75% {
        transform: translate(-4px, -6px);
    }
}

@keyframes floatGentle {
    0%, 100% {
        transform: translate(0px, 0px);
    }
    33% {
        transform: translate(6px, -7px);
    }
    66% {
        transform: translate(-5px, -10px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: var(--white);
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 1rem 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 999;
        gap: 2rem;
        border-top: 1px solid rgba(45, 99, 86, 0.1);
    }
    
    .nav-links.mobile-open {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-links .nav-link {
        display: block;
        padding: 0.5rem 1rem;
        white-space: nowrap;
    }
    
    .nav-links .cta-button {
        padding: 0.5rem 1rem;
        white-space: nowrap;
    }
    
    .mobile-menu-button {
        display: block !important;
        background: none;
        border: none;
        color: var(--primary-color);
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1001;
        padding: 0.5rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-button:hover {
        background: rgba(45, 99, 86, 0.1);
        transform: scale(1.1);
    }
    
    .mobile-menu-button:active {
        transform: scale(0.95);
    }
    
    .mobile-menu-button .material-icons {
        transition: transform 0.3s ease;
    }
    
    .mobile-menu-button.active .material-icons {
        transform: rotate(180deg);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .development-timeline {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .timeline-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .milestone {
        width: 100%;
        max-width: 200px;
    }
    
    .milestone-content h4 {
        font-size: 1rem;
    }
    
    .milestone-content p {
        font-size: 0.75rem;
    }
    
    .milestone-current::after {
        width: 14px;
        height: 14px;
        border-width: 1.5px;
        top: -3px;
        right: -3px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .card {
        padding: 1rem;
        font-size: 0.875rem;
    }
    
    .card .material-icons {
        font-size: 1.5rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.modal-content {
    background: var(--white);
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid rgba(45, 99, 86, 0.1);
}

.modal-header h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--accent-2);
}

.modal-body {
    padding: 1rem 2rem 2rem 2rem;
}

.modal-body p {
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid rgba(45, 99, 86, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.875rem;
    cursor: pointer;
}

.modal-footer {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(45, 99, 86, 0.1);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--accent-1);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    padding: 0.75rem 2rem;
    border: 2px solid rgba(45, 99, 86, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}