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

body {
    font-family: 'Seravek', sans-serif;
    background: linear-gradient(158deg, #EFFFF0 40.43%, #C7F8E3 87.09%, #8CDEFE 105.04%);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 80px 40px;
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 1200px;
    width: 100%;
}

/* Header Styles */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    margin-bottom: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-link {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    line-height: 24px;
}

.nav-link:hover {
    color: #01a252;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 8px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #000;
    text-decoration: none;
}

.social-link:hover {
    color: #01a252;
}

.logo-circle {
    width: 24px;
    height: 24px;
    background-image: url('../icons/Logo-Circle.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.logo-text {
    font-size: 20px;
    font-weight: 500;
    color: #01a252;
}

.text-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    max-width: 720px;
    text-align: left;
}

.main-heading {
    font-size: 56px;
    font-weight: 400;
    color: #000;
    line-height: 1.2;
    width: 100%;
}

.description {
    font-size: 20px;
    font-weight: 300;
    color: #0009;
    line-height: 1.75;
    width: 100%;
    padding-top: 16px;
}

.cards-container {
    display: flex;
    gap: 24px;
    width: 100%;
}

.card {
    flex: 1;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 24px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: background-color 0.5s ease-out;
}

.card:hover{
    background-color: rgba(255, 255, 255, 1);
}

.card-image {
    width: 100%;
    aspect-ratio: 1;
    background-image: url('../images/one-small.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    border-radius: 12px;
    border: 1px solid #000;
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.15), 0px 3px 10px 0px rgba(0,0,0,0.2);
    transition: background-position 1.5s ease-out;
    overflow: hidden;
}

/* Responsive images for different screen sizes */
@media (min-width: 769px) and (max-width: 1200px) {
    .card-image {
        background-image: url('../images/one-medium.jpg');
    }
}

@media (min-width: 1201px) {
    .card-image {
        background-image: url('../images/one-large.jpg');
    }
}

/* Second card responsive images */
.card-image-two {
    background-image: url('../images/two-small.jpg');
}

@media (min-width: 769px) and (max-width: 1200px) {
    .card-image-two {
        background-image: url('../images/two-medium.jpg');
    }
}

@media (min-width: 1201px) {
    .card-image-two {
        background-image: url('../images/two-large.jpg');
    }
}

.card-image.coming-soon{
    opacity: 0.5;
    filter:grayscale(1);
    border: 1px solid #0003;
    box-shadow: none;
}

.card:hover .card-image {
    /* background-position: bottom center; */
}

.card-title {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    padding-top: 16px
}

.card-title-text {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    line-height: 24px;
    flex: 1;
}

.card-badges {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.badge {
    width: 24px;
    height: 24px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.badge.figma {
    background-image: url('../images/figma.png');
}

.badge.ghost {
    background-image: url('../images/ghost.png');
}

.card-description {
    font-size: 16px;
    font-weight: 300;
    color: #00000099;
    line-height: 1.5;
    flex-grow: 1;
}

.card-button {
    background-color: #01a252;
    color: white;
    border: none;
    padding: 10px 0;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 1s ease-in-out;
}

@keyframes pulse-outline {
    0% {
        outline: 1px solid #01a252;
        outline-offset: 0px;
    }
    50% {
        outline: 2px solid #01a252;
        outline-offset: 3px;
    }
    100% {
        outline: 1px solid #01a252;
        outline-offset: 0px;
    }
}

.card-button:hover:not(.disabled) {
    animation: pulse-outline 1s ease-in-out infinite;
}

.card-button.disabled {
    background-color: rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.2);
    cursor: not-allowed;
}

.divider {
    height: 1px;
    width: 100%;
    background-color: transparent;
}

.footer {
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 300;
    color: #000;
    line-height: 1.75;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-link {
    color: #000;
    text-decoration: none;
}

.footer-link:hover {
    color: #01a252;
}

.footer-left {
    flex: 1;
}

.footer-brand {
    font-weight: bold;
}

/* Legal Pages Styles */
.legal-content {
    max-width: 720px;
    width: 100%;
    padding: 0;
}

.legal-heading {
    font-size: 56px;
    font-weight: 400;
    color: #000;
    line-height: 1.2;
    margin-bottom: 24px;
}

.legal-date {
    font-size: 16px;
    font-weight: 300;
    color: #0009;
    margin-bottom: 48px;
    line-height: 1.75;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 400;
    color: #000;
    margin: 48px 0 24px 0;
    line-height: 1.3;
}

.legal-content p {
    font-size: 16px;
    font-weight: 300;
    color: #000;
    line-height: 1.75;
    margin-bottom: 24px;
}

.legal-content ul {
    margin: 24px 0 32px 0;
    padding-left: 0;
    list-style: none;
}

.legal-content li {
    font-size: 16px;
    font-weight: 300;
    color: #000;
    line-height: 1.75;
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
}

.legal-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: 400;
}

.legal-content strong {
    font-weight: 500;
}

.legal-footer {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-footer p {
    font-size: 14px;
    font-weight: 300;
    color: #0009;
    line-height: 1.75;
}

/* About Page Styles */
.about-content {
    max-width: 720px;
    width: 100%;
    padding: 60px 0;
}

.about-heading {
    font-size: 56px;
    font-weight: 400;
    color: #000;
    line-height: 1.2;
    margin-bottom: 32px;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 400;
    color: #000;
    margin: 48px 0 24px 0;
    line-height: 1.3;
}

.about-content p {
    font-size: 18px;
    font-weight: 300;
    color: #000;
    line-height: 1.75;
    margin-bottom: 24px;
}

.about-cta {
    margin-top: 48px;
    padding: 32px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.about-cta p {
    margin-bottom: 24px;
    font-size: 18px;
    color: #0009;
}

.cta-button {
    background-color: #01a252;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0px 4px 12px 0px rgba(1, 162, 82, 0.3);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 32px;
    }
    
    .logo-text {
        display: none;
    }
    
    .nav-menu {
        gap: 12px;
    }
    
    .nav-link {
        font-size: 16px;
    }
    
    .main-heading {
        font-size: 40px;
    }
    
    .description {
        font-size: 13px;
    }
    
    .cards-container {
        flex-direction: column;
        gap: 12px;
    }
    
    .card {
        padding: 16px;
        gap: 16px;
    }
    
    .card-description {
        font-size: 14px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-left {
        flex: none;
    }
}