/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFF5F7;  /* Light background */
    color: #2A2B2D;             /* Dark text */
}

/* Global Reset and Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* Navbar */
/* Navbar */
.navbar {
    background-color:  #2A2B2D;
    display: flex;
    width: 100%;
    max-width: 1520px;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    height: 90px;
    box-shadow: 0 2px 5px rgba(42, 43, 45, 0.1);
    margin: 0 auto;
}

.navbar-container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.navbar-title {
    font-size: 32px;
    font-weight: bold;
    color:  #FFF5F7;
    flex-grow: 1;
    text-align: center;
}

.footer {
    background-color:  #2A2B2D;
    text-align: center;
    padding: 15px;
    width: 100%;
    margin-top: 40px;
    color: #FFF5F7;
    font-size: 16px;
    font-weight: bold;
}

/* Logo Styling */
.logo-container {
    width: 60px;
    height: 60px;
    background-color: #FFF5F7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 50px;
    font-weight: 600;
    color:  #2A2B2D;
    font-family: 'Times New Roman';
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
}

/* --- Custom Animated Back Button --- */
.back-button {
    display: block;
    position: absolute;
    top: 100px;
    left: 20px;
    width: 56px;
    height: 56px;
    margin: 0;
    overflow: hidden;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    border: 0;
}

.back-button:before,
.back-button:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    inset: 7px;
}

.back-button:before {
    border: 4px solid #2A2B2D;
    transition: opacity 0.4s ease-in-out, transform 0.5s ease-in-out;
}

.back-button:after {
    border: 4px solid #2A2B2D;
    transform: scale(1.3);
    transition: opacity 0.4s ease-in-out, transform 0.5s ease-in-out;
    opacity: 0;
}

.back-button:hover:before {
    opacity: 0;
    transform: scale(0.7);
}

.back-button:hover:after {
    opacity: 1;
    transform: scale(1);
}

.button-box {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
}

.button-elem {
    display: block;
    width: 20px;
    height: 20px;
    margin: 17px 18px 0 18px;
    transform: rotate(180deg);
    fill: #2A2B2D;
}

.back-button:hover .button-box {
    transition: 0.4s;
    transform: translateX(-56px);
}






/* Container */
.container {
    max-width: 800px;
    margin: 30px auto;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.08);
    line-height: 1.6;
}

/* Headings */
h2 {
    color: #2A2B2D;
    font-size: 24px;
    border-bottom: 3px solid #2A2B2D;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

h3 {
    color: #2A2B2D;
    font-size: 20px;
    margin-top: 20px;
}

/* Paragraphs */
p {
    font-size: 16px;
    color: #2A2B2D;
    line-height: 1.6;
}

/* Lists */
ul {
    list-style: none;
    padding: 0;
}

ul li {
    font-size: 16px;
    padding: 8px 0;
    display: flex;
    align-items: center;
}

ul li::before {
    content: "✔";
    color: #2A2B2D;
    font-size: 18px;
    font-weight: bold;
    margin-right: 10px;
}

/* Links */
a {
    color: #2A2B2D;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

/* Contact Info */
p a {
    font-size: 16px;
    font-weight: 500;
}

p strong {
    color: #2A2B2D;
}


/* Media Queries */
@media only screen and (max-width: 768px) {
    body {
        padding: 0;
        margin: 0;
        font-size: 15px;
    }

    .navbar {
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 10px;
        align-items: flex-start;
    }

    .logo-container {
        width: 45px;
        height: 45px;
        margin-left: 0;
    }

    .logo-text {
        font-size: 30px;
    }

    .navbar-title {
        font-size: 20px;
        text-align: center;
        margin-top: 8px;
        width: 100%;
    }

    .container {
        width: 90%;
        margin: 20px auto;
        padding: 20px;
        border-radius: 10px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
        margin-top: 16px;
    }

    p {
        font-size: 14px;
        line-height: 1.6;
    }

    ul li {
        font-size: 14px;
    }

    p a {
        font-size: 14px;
    }

    .footer {
        width: 100%;
        padding: 15px;
        font-size: 14px;
        margin-top: 30px;
    }

    .back-button {
        top: 70px;
        left: 10px;
        width: 44px;
        height: 44px;
    }

    .button-elem {
        width: 16px;
        height: 16px;
        margin: 13px 12px 0 12px;
    }

    .back-button:before,
    .back-button:after {
        inset: 6px;
    }

    button {
        width: 100%;
        padding: 12px;
        font-size: 16px;
        background-color: #C57B57;
        color: #fff;
        border: none;
        border-radius: 8px;
        margin-top: 15px;
        cursor: pointer;
        transition: background 0.3s;
    }

    .navbar-container,
    .logo-container {
        justify-content: center;
    }
}
