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

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

/* Main Section Styles */
#innovation {
    min-height: 100vh;
    position: relative;
    background-color: #0d1a26;
    display: flex;
    align-items: center;
    padding: clamp(1rem, 5vw, 3rem);
}

/* Content Styles */
.content {
    position: relative;
    z-index: 2;
    width: min(90%, 600px);
    margin-left: clamp(1rem, 5vw, 50px);
    color: white;
}

.content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
    line-height: 1.2;
}

.highlight {
    color: #f04633;
    font-weight: bold;
}

.content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    line-height: 1.5;
}

/* Contact Section */
.contact {
    margin-top: clamp(1rem, 3vw, 2rem);
}

.contact p {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    margin-bottom: 0.5rem;
}

.contact a {
    color: #3498db;
    font-weight: bold;
    text-decoration: none;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Image Container and Background */
.image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.shark {
    position: absolute;
    bottom: 20%;
    right: 1%;
    width: min(800px, 50vw);
    transition: transform 0.3s ease-in-out;
    z-index: 3;
}

.shark:hover {
    transform: scale(1.05) translate(-10px, -10px);
}

#footer {
    position: relative;
    z-index: 3;
    width: 100%;
    background: #fff; /* Add your footer background color */
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        width: 100%;
        margin-left: 0;
        text-align: center;
    }

    .shark {
        width: 80vw;
        max-width: 300px;
        position: relative;
        bottom: -5%;
        right: auto;
        margin: 2rem auto;
        display: block;
    }

    .image-container {
        position: fixed;
    }

    #footer {
        margin-top: auto; /* Push footer to bottom */
    }
}

@media (max-width: 480px) {
    #innovation {
        padding: 1rem;
    }

    .content h1 {
        font-size: 2rem;
    }

    .shark {
        width: 90vw;
        margin: 1rem auto;
    }
}

/* Print Styles */
@media print {
    .image-container::before {
        background-color: rgba(0, 0, 0, 0.3);
    }

    .content {
        color: #000;
    }

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