/* adhesion.css */

/* Reset some defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #2c3e50;
    line-height: 1.6;
}

/* Container for the content */
.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

/* Heading */
h1 {
    font-size: 2.5rem;
    color: #3A75C4;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

/* Paragraph */
p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    text-align: center;
}

/* PDF container */
.pdf-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* PDF Section */
.pdf-section {
    width: 100%;
    margin-bottom: 30px;
}

/* Button */
button.btn-primary {
    background-color: #3A75C4;
    color: #fff;
    padding: 12px 25px;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: block;
    margin: 20px auto;
    width: 50%;
}

button.btn-primary:hover {
    background-color: #2c3e50;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px;
        width: 90%;
    }

    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    button.btn-primary {
        width: 80%;
    }

    /* For the embed PDF to scale properly on mobile */
    embed {
        width: 100%;
        height: 400px;
    }
}

/* Styling for Embed Elements */
embed {
    border: none;
    width: 100%;
    max-width: 100%;
    height: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


