/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #00031f;
    /* Deep dark navy background matching the design */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Basic typography just in case, though we are using mostly images */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding: 2rem;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.5rem;
    /* Space between the main elements */
    max-width: 1000px;
    width: 100%;
}

/* Hero Section */
.hero-section {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    width: 600px;
    /* Adjust size to be prominent as in design */
    object-fit: contain;
    /* Subtle glow for a premium feel */
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.05));
    animation: fadeInDown 1.2s ease-out forwards;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 2rem;
    /* Gap between buttons */
    justify-content: center;
    align-items: center;
    width: 100%;
    animation: fadeIn 1.5s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.btn-link {
    display: inline-block;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.2s ease;
}

.btn-img {
    height: 60px;
    /* Adjust based on original design for nicely sized buttons */
    width: auto;
    border-radius: 12px;
}

.hover-effect:hover {
    transform: translateY(-4px) scale(1.03);
    /* Glow effect on hover */
    filter: brightness(1.15) drop-shadow(0 10px 20px rgba(255, 255, 255, 0.1));
}

.hover-effect:active {
    transform: translateY(1px);
    filter: brightness(0.9);
}

/* Seal Section */
.seal-section {
    margin-top: 2rem;
    /* Give it some extra room from the buttons */
    display: flex;
    justify-content: center;
    width: 100%;
    animation: fadeInUp 1.2s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.seal-img {
    max-width: 250px;
    /* Beautiful seal size */
    height: auto;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Fancy hover animation for the seal */
.seal-img:hover {
    transform: scale(1.08) rotate(3deg);
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.15));
}

/* Premium Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        gap: 2.5rem;
    }

    .hero-img {
        width: 80%;
    }

    .btn-img {
        height: 50px;
    }

    .seal-img {
        max-width: 200px;
    }

    .action-buttons {
        gap: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        gap: 2rem;
    }

    .hero-img {
        width: 95%;
    }

    .btn-img {
        height: 44px;
    }

    .action-buttons {
        gap: 1rem;
    }

    .seal-section {
        margin-top: 1rem;
    }

    .seal-img {
        max-width: 160px;
    }
}