/* --- Terms and Conditions Styles --- */
body {
    font-family: "Lato", sans-serif;
    margin-left: 20px;
    margin-bottom: 40px;
    padding: 0;
    background-color: #fff;
}

/* Header/Hero Area (Optional look) */
h1 {
    text-align: center;
    font-size: 3rem;
    color: #385a42;
    margin-top: 60px;
}

.last-updated {
    text-align: center;
    color: #888;
    font-style: italic;
    margin-bottom: 40px;
}

/* Main Layout Container */
.terms-section {
    max-width: 850px;
    margin: 40px auto;
    padding: 0 20px;
}

.terms-container {
    background: #f9f9f9;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Typography */
h2 {
    font-size: 1.8rem;
    color: #385a42;
    margin-top: 30px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

p,
li {
    line-height: 1.8;
    color: #444;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

strong {
    color: #385a42;
}

/* List Styling */
ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    position: relative;
    padding-left: 25px;
}

/* Custom bullet points to match brand */
ul li::before {
    content: "•";
    color: #385a42;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Button Styling (Matching your buyButton style) */
.instagram-button {
    background-color: transparent;
    color: #385a42;
    border: 2px solid #385a42;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    font-family: "Lato", sans-serif;
    display: block;
    margin: 40px auto 0;
    /* Centers the button */
    text-align: center;
}

.instagram-button:hover {
    background-color: #385a42;
    color: white;
}

/* Button Styling */
.buyButton {
    background-color: transparent;
    color: #385a42;
    border: 2px solid #385a42;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    font-family: "Lato", sans-serif;
    display: inline-block;
}

.buyButton:hover {
    background-color: #385a42;
    color: white;
}