/* --- Base Reset & Defaults --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    /* Base font size */
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    /* Default weight */
    font-style: normal;
    line-height: 1.6;
    color: #333;
    /* Dark grey text */
    background-color: #dbead4;
    /* Base background color */
    /* Subtle smoky/frosty gradient overlay */
    background-image: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            /* Light white tint */
            rgba(219, 234, 212, 0.1) 50%,
            /* Subtle base color tint */
            rgba(255, 255, 255, 0.1) 100%
            /* Light white tint */
        );
    background-attachment: fixed;
    /* Keeps gradient fixed during scroll */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    /* Add padding for smaller screens */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Main Container --- */
.container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Glassmorphic Content Box --- */
.content-wrapper {
    background: rgba(255, 255, 255, 0.2);
    /* Semi-transparent white background */
    backdrop-filter: blur(12px);
    /* The blur effect */
    -webkit-backdrop-filter: blur(12px);
    /* Safari support */
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    /* Subtle border */
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    /* Soft shadow */
    padding: 40px 50px;
    text-align: center;
    max-width: 600px;
    /* Limit width for larger screens */
    width: 90%;
    /* Use percentage for responsiveness */
}

/* --- Logo --- */
.logo {
    display: block;
    /* Needed for margin auto centering */
    width: 80px;
    /* Adjust size as needed */
    height: auto;
    margin: 0 auto 25px auto;
    /* Center and add bottom margin */
    opacity: 0.9;
    transition: transform 0.3s ease-in-out;
}

.logo:hover {
    transform: scale(1.05);
    /* Subtle scale on hover */
}

/* --- Typography --- */
h1 {
    font-size: 2.2rem;
    /* Responsive font size */
    font-weight: 700;
    /* Bolder weight for heading */
    margin-bottom: 15px;
    color: #2c3e50;
    /* Slightly darker, muted blue/grey */
}

p {
    font-size: 1.1rem;
    font-weight: 300;
    /* Lighter weight for body text */
    color: #555;
    /* Slightly lighter grey */
    margin-bottom: 30px;
    max-width: 450px;
    /* Limit paragraph width for readability */
    margin-left: auto;
    margin-right: auto;
}

/* --- Call-to-Action Button --- */
.cta-button {
    display: inline-block;
    background-color: #4CAF50;
    /* A distinct green */
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    /* Pill shape */
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    /* Initial subtle shadow */
    margin-bottom: 25px;
}

.cta-button:hover,
.cta-button:focus {
    background-color: #45a049;
    /* Slightly darker green on hover */
    /* Soft glowing effect */
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.5);
    transform: translateY(-2px);
    /* Slight lift */
    outline: none;
    /* Remove focus outline if needed */
}

.cta-button:active {
    transform: translateY(0px);
    /* Press down effect */
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

/* --- Contact Info --- */
.contact-info {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 0;
    /* Remove bottom margin for the last element */
}

.contact-info a {
    color: #3498db;
    /* A pleasant blue for links */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, text-decoration 0.3s ease;
    position: relative;
    /* For the underline effect */
    padding-bottom: 2px;
    /* Space for the underline */
}

.contact-info a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    display: block;
    margin-top: 2px;
    right: 0;
    background: #3498db;
    transition: width .3s ease;
    -webkit-transition: width .3s ease;
}

.contact-info a:hover {
    color: #2980b9;
    /* Darker blue on hover */
}

.contact-info a:hover::after {
    width: 100%;
    left: 0;
    background-color: #2980b9;
}


/* --- Responsive Design --- */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 30px 30px;
    }

    h1 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .logo {
        width: 60px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px;
        /* Reduce padding on very small screens */
    }

    .content-wrapper {
        padding: 25px 20px;
        width: 95%;
        /* Allow slightly more width */
    }

    h1 {
        font-size: 1.6rem;
    }

    p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .contact-info {
        font-size: 0.85rem;
    }
}