/* General styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    padding: 20px;
    max-width: 700px;
    margin: auto;
}

/* Title Section */
.template-title h1, .template-title h2 {
    color: #222;
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.template-title p {
    margin-bottom: 15px;
}

/* Link Styling */
a {
    color: #0073e6;
    text-decoration: underline;
}

/* Image Handling */
img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
}

/* Discreet Luxury CTA Button */
.cta-button a {
    display: inline-block;
    background-color: #2C2A2A; /* Soft, muted dark gray */
    color: #FFF;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    border: 2px solid #D4AF37; /* Muted gold border */
    transition: all 0.3s ease;
}

.cta-button a:hover {
    background-color: #D4AF37; /* Soft gold on hover */
    color: #2C2A2A; /* Dark contrast text */
    border-color: #2C2A2A;
}



/* Container Styling */
.container {
    padding: 0;
}

.row {
    display: flex;
    flex-direction: column;
}

/* Hide Unnecessary Elements */
header, footer, nav, aside {
    display: none;
}
