* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, 'Times New Roman', Times;
    background-image: url('images/Background.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Header Styles */
.header {
    color: white;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    border-bottom: 3px solid #000000;
}

.logo-section {
    flex-shrink: 0;
}

.tagline {
    flex: 1;
    text-align: center;
    margin: 0 40px;
    background-color: #6c3cf1;
    padding: 20px;
    border: 2px solid #000000;
}

.tagline h1 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
}

.tagline p {
    font-size: 12px;
    line-height: 1.4;
}

/* Get Started Button */
.get-started {
    background: linear-gradient(135deg, #7B2CBF 0%, #6c3cf1 100%);
    color: white;
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid white;
    border-radius: 25px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(123, 44, 191, 0.4);
    margin-top: 10px;
}
.get-started:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(123, 44, 191, 0.6);
    background: linear-gradient(135deg, #6c3cf1 0%, #7B2CBF 100%);
    border-color: #e0e0e0;
}
.get-started:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(123, 44, 191, 0.4);
}

/* Authentication Buttons */
.auth-buttons {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

/* Sign In and Join Today Buttons */
.sign-in,
.join-today {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid white;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #7B2CBF 0%, #6c3cf1 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(123, 44, 191, 0.4);
}
.sign-in:hover,
.join-today:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(123, 44, 191, 0.6);
    background: linear-gradient(135deg, #6c3cf1 0%, #7B2CBF 100%);
    border-color: #e0e0e0;
}
.sign-in:active,
.join-today:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(123, 44, 191, 0.4);
}

/* Navigation Bar */
.navbar {
    display: flex;
    background-color: #6c3cf1;
    border-bottom: 2px solid #000000;
}
.navbar a {
    flex: 1;
    padding: 15px 20px;
    text-align: center;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-right: 1px solid #000000;
    transition: background-color 0.3s ease;
}
.navbar a:last-child {
    border-right: none;
}
.navbar a:hover {
    background-color: #7B2CBF;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #7B2CBF 0%, #6b2bad 100%);
    padding: 80px 40px;
    text-align: center;
    color: white;
    border: 2px solid #5a1f8f;
    margin: 20px;
}
.hero-content {
    font-size: 32px;
    font-weight: bold;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Content Section */
.main-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    grid-template-areas:
        "guide phone"
        "blog blog";
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    max-width: 1100px;
    padding: 40px;
    margin: 40px auto;
}

/* Guide Section */
.guide-section {
    grid-area: guide;
    color: #000000;
    background: rgba(255, 255, 255, 0.22);
    padding: 70px;
    border: 2px solid #000000;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: 580px;
    width: 400px;
}
.guide-section h2 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 2.5;
}
.guide-section p {
    font-size: 20px;
    line-height: 1.6;
}

.phone-section {
    grid-area: phone;
    height: 640px;
    
    border-radius: 8px;
    overflow: hidden;
    background: transparent;
}

.phone-section img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Page */
.contact-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 24px;
}

.contact-card {
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(320px, 1fr);
    gap: 40px;
    background-color: rgba(255, 255, 255, 0.85);
    border: 2px solid #000000;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.contact-info {
    color: #111111;
}

.contact-eyebrow {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6c3cf1;
    margin-bottom: 12px;
}

.contact-info h2 {
    font-size: 56px;
    line-height: 0.95;
    margin-bottom: 28px;
}

.contact-info p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
}

.contact-methods a {
    color: #111111;
    font-size: 18px;
    text-decoration: none;
}

.contact-methods a:hover {
    color: #6c3cf1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 14px;
    font-size: 15px;
    font-family: Arial, 'Times New Roman', Times;
    border: 1.5px solid #8f8f8f;
    background-color: #ffffff;
    color: #111111;
}

.contact-form textarea {
    min-height: 170px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 2px solid #6c3cf1;
    border-color: #6c3cf1;
}

.contact-submit {
    margin-top: 10px;
    padding: 18px;
    border: 2px solid #000000;
    background-color: #000000;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.contact-submit:hover {
    background-color: #6c3cf1;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Blog Page */
.blog-gallery {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 28px;
}

.blog-card {
    background-color: rgba(255, 255, 255, 0.85);
    border: 2px solid #000000;
    border-radius: 24px;
    padding: 18px 18px 28px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.blog-card img {
    display: block;
    width: 100%;
    height: 290px;
    object-fit: cover;
    border-radius: 16px;
}

.blog-card-text {
    min-height: 120px;
    margin-top: 18px;
    border-radius: 16px;
}



/* Footer */
.footer {
    background-color: #6c3cf1;
    color: white;
    padding: 0;
    margin-top: 10px;
    border-top: 2px solid #6c3cf1;
}
.footer-links {
    display: flex;
    border-bottom: 2px solid #000000;
}
.footer-links a {
    flex: 1;
    padding: 20px;
    text-align: center;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-right: 1px solid #000000;
    transition: background-color 0.3s ease;
}
.footer-links a:last-child {
    border-right: none;
}
.footer-links a:hover {
    background-color: #6b2bad;
}
.footer-text {
    padding: 10px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    background-color: #6c3cf1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .tagline {
        margin: 0;
    }

    .navbar {
        flex-direction: column;
    }

    .navbar a {
        border-right: none;
        border-bottom: 1px solid #6c3cf1;
    }

    .navbar a:last-child {
        border-bottom: none;
    }

    .main-content {
        grid-template-columns: 1fr;
        grid-template-areas:
            "guide"
            "phone"
            "blog";
        padding: 20px;
        margin: 20px;
    }

    .guide-section,
    .phone-section {
        height: auto;
    }

    .phone-section img {
        height: auto;
    }

    .contact-card {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .blog-gallery {
        grid-template-columns: 1fr;
    }

    .contact-info h2 {
        font-size: 42px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
    }

    .footer-links a {
        border-right: none;
        border-bottom: 1px solid #6c3cf1;
    }

    .footer-links a:last-child {
        border-bottom: none;
    }
}
