@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Reset default margins and padding */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

/* Reset box-sizing */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Remove default list styles */
ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Remove default text decoration */
a {
    text-decoration: none;
    color: inherit;
}

/* Remove default button styles */
button {
    border: none;
    margin: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

/* Remove default input styles */
input, textarea, select {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}

body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 2;
    color: #333;
}

.site-main {
    flex: 1 1 0%;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #d4bbff;
    color: #333;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: #c4a5ff;
    transform: translateY(-2px);
}

/* footer */
.footer-wrapper {
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-disclaimer {
    padding: 30px 0;
}

.footer-disclaimer-text {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    line-height: 2;
}

.site-footer {
    padding: 60px 0;
    background-color: #d4bbff;
}

.footer-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 20px 0;
}

.footer-menu a {
    font-size: 14px;
    font-weight: 600;
    line-height: 2;
    color: #333;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #6339f3;
}

.copyright {
    font-size: 14px;
    font-weight: 400;
    line-height: 2;
    color: #333;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-button {
        padding: 12px 24px;
    }

    div.terms-content h1 {
        font-size: 24px;
        line-height: 1.2;
    }

    .terms-content h2 {
        font-size: 20px;
        line-height: 1.2;
    }

    .container {
        max-width: 100%;
        padding: 0 10px;
    }

    .footer-wrapper {
        flex-direction: column;
    }
    
    .footer-menu {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .site-footer {
        padding: 10px;
    }

    div.terms-content {
        padding: 10px;
    }

    .copyright {
        text-align: center;
        width: 100%;
        padding-top: 30px;
        font-size: 12px;
    }

    .footer-wrapper {
        align-items: flex-start;
    }
}   


