@media only screen and (min-width: 769px) {

    body {
        margin: 0;
        background-color: #b0e3ff;
    }

    .logo {
        width: 30%;
        margin: 50px;
    }

    .container {
        display: flex;
        justify-content: center; /* Horizontal */
        align-items: center; /* Vertical */
    }

    .navbar {
        width: 100%;
        padding: 30px 0;
    }

    .nav-links {
        list-style: none;
        display: flex;
        justify-content: center;
        gap: 90px; /* Space between menu items */
        margin: 0;
        padding: 0;
    }

    .nav-links li {
        position: relative;
    }

    .nav-links a {
        text-decoration: none;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 0.95rem;
        letter-spacing: 2px;
        color: #1f63a2; /* Dark blue */
        text-transform: uppercase;
        transition: color 0.3s ease;
    }

    .nav-links a:hover {
        color: #ffbf80; /* Sand */
    }

    /* Dropdown */
    .dropdown-menu {
        position: absolute;
        top: 140%;
        left: 50%;
        transform: translateX(-50%);
        list-style: none;
        margin: 0;
        padding: 12px 0;
        min-width: 180px;
        text-align: center;

        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .dropdown-menu li {
        padding: 8px 20px;
    }

    .dropdown-menu a {
        display: block;
        font-size: 0.85rem;
        letter-spacing: 1px;
        text-transform: none;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
    }

    .breakercontainer {
        display: flex;
        justify-content: right; /* Horizontal */
        align-items: center; /* Vertical */
        margin-top: -50px;
    }

    .breaker {
        height: 320px;
        width: 1500px;
    }

    .bookimage {
        width: 60%;
    }

    .about-section {
        display: flex;
        align-items: center; /* Vertically align text and image */
        justify-content: space-between;
        gap: 80px; /* Space between text and image */

        max-width: 1200px;
        /* Center the section */
        padding: 0 40px;
        margin: 50px auto 100px;
    }

    .text-content {
        flex: 1;
    }

    .text-content h2 {
        font-family: "Helvetica Neue", serif;
        font-size: 3rem;
        color: #1f63a2;
        margin-bottom: 20px;
    }

    .text-content p {
        font-family: Arial, sans-serif;
        font-size: 1.1rem;
        line-height: 1.8;
        color: #444;
        margin-bottom: 30px;
    }

    .button {
        display: inline-block;
        padding: 14px 28px;
        background: #1f63a2;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 10px;
        font-family: Arial, serif;
    }

    .button:hover {
        background: #ffbf80;
        color: #1f63a2;
    }

    .image-content {
        flex: 1;
    }

    .image-content img {
        width: 100%;
        max-width: 500px;
        display: block;
        margin-left: auto;
        border-radius: 30px;
    }

    .breakercontainer2 {
        display: flex;
        justify-content: left; /* Horizontal */
        align-items: center; /* Vertical */
        margin-top: -50px;
    }
}

@media only screen and (max-width: 768px){
    body{
        margin: 0;
        background-color: #b0e3ff;
    }

    .logo{
        width: 70%;
        margin: 30px;
    }

    .container{
        display: flex;
        justify-content: center; /* Horizontal */
        align-items: center;     /* Vertical */
    }

    .navbar {
        width: 100%;
    }

    .nav-links {
        list-style: none;
        display: flex;
        justify-content: center;
        gap: 20px;                 /* Space between menu items */
        margin: 0;
        padding: 0;
    }

    .nav-links li {
        position: relative;
    }

    .nav-links a {
        text-decoration: none;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 14px;
        letter-spacing: 2px;
        color: #1f63a2;            /* Dark blue */
        text-transform: uppercase;
        transition: color 0.3s ease;
    }

    .nav-links a:hover {
        color: #ffbf80;            /* Sand */
    }

    /* Dropdown */
    .dropdown-menu {
        position: absolute;
        top: 140%;
        left: 50%;
        transform: translateX(-50%);
        list-style: none;
        margin: 0;
        padding: 12px 0;
        min-width: 180px;
        text-align: center;

        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .dropdown-menu li {
        padding: 8px 20px;
    }

    .dropdown-menu a {
        display: block;
        font-size: 0.85rem;
        letter-spacing: 1px;
        text-transform: none;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
    }

    .breakercontainer{
        display: flex;
        justify-content: right; /* Horizontal */
        align-items: center;     /* Vertical */
    }

    .breaker{
        width: 400px;
        height: 120px;
        margin-top: 30px;
    }

    .bookimage{
        width: 80%;
        max-width: 350px;
        margin-top: -50px;
        margin-bottom: -30px;
    }

    .about-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 40px;
    }

    .text-content {
        width: 100%;
    }

    .text-content h2 {
        font-family: "Helvetica Neue", serif;
        font-size: 24px;
        color: #1f63a2;
        margin-bottom: 20px;
    }

    .text-content p {
        font-family: Arial, sans-serif;
        font-size: 14px;
        line-height: 1.8;
        color: #444;
        margin-bottom: 30px;
    }

    .button {
        display: inline-block;
        padding: 14px 28px;
        background: #1f63a2;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        border-radius: 10px;
        font-family: Arial, sans-serif;

        position: relative;
        z-index: 10;
    }

    .image-content {
        order: -1;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .image-content img {
        width: 100%;
        max-width: 600px;
        display: block;
        margin-left: auto;
    }

    .breakercontainer2{
        display: flex;
        justify-content: left; /* Horizontal */
        align-items: center;     /* Vertical */
        width: 400px;
        height: 120px;
    }

    .sender-form-field {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 50px auto 0;
        max-width: 450px;
        padding: 0 20px;
    }

    .sender-form-field input {
        width: 100%;
        padding: 10px 14px;
        font-size: 14px;
        border-radius: 6px;
    }

    .sender-form-field button {
        padding: 10px 20px;
        font-size: 14px;
        border-radius: 6px;
    }
}