/* -------------------------------------------------------------------
   TABLE OF CONTENTS
----------------------------------------------------------------------
  0.  Variables
  1.  Global Styles & Resets
  2.  Typography
  3.  Layout & Helpers (Container, Section Padding, Grids)
  4.  Header & Navigation
  5.  Footer
  6.  UI Components
      - Buttons
      - Cards (General, Image, Info, Testimonial)
      - Forms
  7.  Section Specific Styles
      - Hero Section
      - Services Section
      - About Section
      - Clientele Section
      - Success Stories Section
      - Projects Section
      - Behind The Scenes Section
      - External Resources Section
      - Contact Section
  8.  Page Specific Styles
      - Success Page
      - Privacy & Terms Page
  9.  Animations & Transitions
      - Scroll Animations (basic setup)
      - Hover Effects
  10. Responsive Design (Media Queries)
------------------------------------------------------------------- */

/* -------------------------------------------------------------------
   0. Variables
------------------------------------------------------------------- */
:root {
    --font-family-heading: 'Montserrat', sans-serif;
    --font-family-body: 'Merriweather', serif;

    --color-primary: #3498db; /* A calm, professional blue */
    --color-primary-dark: #2980b9;
    --color-primary-light: #5dade2;

    --color-accent: #e74c3c; /* A contrasting accent, use sparingly */
    --color-accent-dark: #c0392b;

    --color-text-dark: #222222; /* For headings */
    --color-text-body: #333333; /* For main body text */
    --color-text-muted: #555555; /* For secondary text, placeholders */
    --color-text-light: #ffffff;

    --color-background-light: #ffffff;
    --color-background-medium: #f9f9f9; /* Light gray for alternate sections */
    --color-background-dark: #eef2f5;  /* Lighter blue-gray */
    --color-background-overlay: rgba(0, 0, 0, 0.5); /* Overlay for images */

    --border-radius-sm: 4px;
    --border-radius-md: 8px;

    --box-shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
    --box-shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.1);
    --box-shadow-heavy: 0 8px 16px rgba(0, 0, 0, 0.15);

    --transition-speed: 0.3s;
    --transition-timing: ease-in-out;

    --header-height: 70px;
}

/* -------------------------------------------------------------------
   1. Global Styles & Resets
------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size */
}

body {
    font-family: var(--font-family-body);
    color: var(--color-text-body);
    background-color: var(--color-background-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Prevent horizontal scroll */
    padding-top: 0px !important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-speed) var(--transition-timing);
}

a:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

ul, ol {
    list-style-position: inside;
}

/* -------------------------------------------------------------------
   2. Typography
------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    color: var(--color-text-dark);
    margin-bottom: 0.75em;
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: 2.8em; margin-bottom: 0.5em; }
h2 { font-size: 2.2em; } /* Section titles */
h3 { font-size: 1.6em; } /* Card titles, sub-headings */
h4 { font-size: 1.3em; }

p {
    margin-bottom: 1em;
    color: var(--color-text-muted);
}

.section-title {
    text-align: center;
    margin-bottom: 40px; /* As per HTML inline style */
    font-size: 2.5em; /* As per HTML inline style */
    color: var(--color-text-dark);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    color: var(--color-text-muted);
    font-family: var(--font-family-body);
    line-height: 1.7;
}

/* -------------------------------------------------------------------
   3. Layout & Helpers
------------------------------------------------------------------- */
.container {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Basic grid for cards, can be enhanced */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Basic Flexbox for columns */
.flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.flex-item {
    flex: 1 1 300px; /* Grow, shrink, basis */
}

/* For larger columns as per "is-two-thirds" like behavior */
.flex-item.is-two-thirds {
    flex-basis: 66%;
}
.flex-item.is-one-third {
    flex-basis: 33%;
}

/* -------------------------------------------------------------------
   4. Header & Navigation
------------------------------------------------------------------- */
.site-header {
    background-color: var(--color-background-light);
    box-shadow: var(--box-shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: background-color var(--transition-speed) var(--transition-timing);
}

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

.site-header .logo {
    font-family: var(--font-family-heading);
    font-size: 1.8em;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}
.site-header .logo:hover {
    color: var(--color-primary-dark);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0; padding: 0;
}

.main-nav a {
    font-family: var(--font-family-heading);
    text-decoration: none;
    color: var(--color-text-body);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: color var(--transition-speed) var(--transition-timing);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-primary);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-speed) var(--transition-timing);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-text-dark);
    position: relative;
    transition: transform var(--transition-speed) var(--transition-timing);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-text-dark);
    transition: transform var(--transition-speed) var(--transition-timing), top var(--transition-speed) var(--transition-timing), bottom var(--transition-speed) var(--transition-timing);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Active state for hamburger - JS will toggle a class on nav or body */
.nav-open .hamburger {
    transform: rotate(45deg);
}
.nav-open .hamburger::before {
    top: 0;
    transform: rotate(90deg);
}
.nav-open .hamburger::after {
    bottom: 0;
    transform: rotate(90deg);
    opacity: 0; /* Or combine into one line */
}


/* -------------------------------------------------------------------
   5. Footer
------------------------------------------------------------------- */
.site-footer {
    background-color: var(--color-text-dark);
    color: var(--color-text-light);
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.site-footer .footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
    margin-bottom: 10px;
}

.site-footer .footer-nav a {
    color: var(--color-background-medium);
    font-family: var(--font-family-heading);
    font-size: 0.9em;
}
.site-footer .footer-nav a:hover {
    color: var(--color-primary-light);
    text-decoration: underline;
}

.site-footer .social-links {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.site-footer .social-links a {
    color: var(--color-background-medium);
    font-family: var(--font-family-body);
    font-size: 0.9em;
}
.site-footer .social-links a:hover {
    color: var(--color-primary-light);
    text-decoration: underline;
}

.site-footer .copyright {
    font-size: 0.85em;
    color: var(--color-text-muted);
    margin: 0;
}
.site-footer .copyright,
.site-footer .copyright #current-year {
    color: #aaa; /* Make copyright text lighter on dark background */
}

/* -------------------------------------------------------------------
   6. UI Components
------------------------------------------------------------------- */

/* --- Buttons --- */
.button,
button,
input[type="submit"],
input[type="button"] {
    display: inline-block;
    font-family: var(--font-family-heading);
    font-weight: 500;
    font-size: 1em;
    text-align: center;
    text-decoration: none;
    color: var(--color-text-light);
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    border: none;
    padding: 12px 28px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: background-color var(--transition-speed) var(--transition-timing),
                transform var(--transition-speed) var(--transition-timing),
                box-shadow var(--transition-speed) var(--transition-timing);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background: linear-gradient(45deg, var(--color-primary-dark), var(--color-primary));
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    color: var(--color-text-light); /* Ensure text color remains white on hover */
    text-decoration: none;
}

.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="button"]:focus {
    outline: 2px solid var(--color-primary-dark);
    outline-offset: 2px;
}

.button.hero-cta {
    font-size: 1.1em;
    padding: 15px 35px;
}

/* --- Cards --- */
.card {
    background-color: var(--color-background-light);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-medium);
    overflow: hidden;
    transition: transform var(--transition-speed) var(--transition-timing),
                box-shadow var(--transition-speed) var(--transition-timing);
    display: flex; /* For centering content if needed by prompt */
    flex-direction: column;
    /* align-items: center; /* This centers all content block-wise */
    text-align: left; /* Default text alignment */
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-heavy);
}

.card-image { /* Container for image */
    width: 100%;
    height: 200px; /* Fixed height for image container */
    overflow: hidden;
    position: relative; /* For overlay */
    background-color: #eee; /* Placeholder bg color */
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the container */
    transition: transform 0.4s ease;
}
.card:hover .card-image img {
    transform: scale(1.05);
}

.card-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-background-overlay);
    opacity: 0.6; /* Adjust as needed for text readability on images */
    z-index: 1;
}

.card-content {
    padding: 25px;
    flex-grow: 1; /* Allows content to take remaining space */
}
.card-content.text-center, /* Utility for cards that need centered text */
.card.text-center .card-content {
    text-align: center;
}

.card-content h3 {
    font-size: 1.5em; /* As per HTML inline style */
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.card-content p {
    font-size: 1em; /* As per HTML inline style */
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Testimonial Card Specifics (if image is small avatar) */
.testimonial-card .card-image {
    height: auto; /* Override fixed height for avatar */
    padding-top: 20px; /* Space for avatar */
    background-color: transparent; /* No placeholder for avatar container */
}
.testimonial-card .card-image img {
    width: 100px; /* Avatar size */
    height: 100px; /* Avatar size */
    border-radius: 50%;
    margin: 0 auto; /* Center avatar */
    object-fit: cover;
    border: 3px solid var(--color-background-light);
    box-shadow: var(--box-shadow-light);
}
.testimonial-card .card-content {
    text-align: center;
}
.testimonial-card .card-content h3 {
    font-size: 1.2em;
    margin-top: 10px;
}
.testimonial-card .card-content p {
    font-style: italic;
    font-size: 0.95em;
    color: var(--color-text-body);
}

/* Info Card: Often text-focused, might not have a top image */
.info-card {
    /* Styles similar to .card, but might have specific padding or icon integration */
}
.info-card.card .card-image { /* If info card uses the image structure */
    /* Ensure it follows main card-image style */
}


/* --- Forms --- */
.contact-form {
    background-color: var(--color-background-light);
    padding: 30px 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-medium);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-family-heading);
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-text-dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-family-body);
    font-size: 1em;
    color: var(--color-text-body);
    transition: border-color var(--transition-speed) var(--transition-timing), box-shadow var(--transition-speed) var(--transition-timing);
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(var(--color-primary-rgb, 52, 152, 219), 0.25); /* Use RGB for transparent shadow */
    outline: none;
}
:root { --color-primary-rgb: 52, 152, 219; } /* Define RGB for box-shadow */


.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit-button {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
}


/* -------------------------------------------------------------------
   7. Section Specific Styles
------------------------------------------------------------------- */

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 80vh; /* Ensure it's substantial but not excessively tall */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-text-light); /* White text for hero */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* Parallax effect - basic version */
    /* background-attachment: fixed; /* Creates simple parallax, can cause issues on mobile or with complex layouts */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)); /* Darker overlay for better text contrast */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5em; /* Larger for hero */
    color: var(--color-text-light);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Ensure readability */
    margin-bottom: 0.5em;
}

.hero-content p {
    font-size: 1.2em;
    color: var(--color-text-light);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5); /* Ensure readability */
    margin-bottom: 1.5em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Services Section --- */
.services-section {
    /* General section padding is applied */
}

/* --- About Section --- */
.about-section {
    background-color: var(--color-background-medium);
}
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}
.about-image {
    flex: 1 1 300px;
    text-align: center;
}
.about-image img {
    border-radius: 50%;
    max-width: 300px; /* Control size of portrait */
    box-shadow: var(--box-shadow-heavy);
}
.about-text {
    flex: 2 1 400px;
}
.about-text p {
    color: var(--color-text-body); /* Darker for readability on light bg */
}

/* --- Clientele Section --- */
.clientele-section {
    /* General section padding */
}
.clientele-section .info-card .card-content h3 {
    text-align: center;
}
.clientele-section .info-card .card-content p {
    text-align: center;
}


/* --- Success Stories Section --- */
.success-stories-section {
    background-color: var(--color-background-dark);
}

/* --- Projects Section --- */
.projects-section {
    /* General section padding */
}

/* --- Behind The Scenes Section --- */
.behind-the-scenes-section {
    background-color: var(--color-background-medium);
}
.behind-the-scenes-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}
.behind-the-scenes-text {
    flex: 2 1 400px;
}
.behind-the-scenes-text p {
    color: var(--color-text-body);
}
.behind-the-scenes-image {
    flex: 1 1 300px;
    text-align: center;
}
.behind-the-scenes-image img {
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-medium);
}

/* --- External Resources Section --- */
.external-resources-section {
    /* General section padding */
}
.resource-list {
    list-style: none;
    padding: 0;
}
.resource-list li {
    background-color: var(--color-background-light);
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-light);
    transition: box-shadow var(--transition-speed) var(--transition-timing);
}
.resource-list li:hover {
    box-shadow: var(--box-shadow-medium);
}
.resource-list li h3 {
    font-family: var(--font-family-heading);
    color: var(--color-text-dark);
    margin-bottom: 8px;
    font-size: 1.3em;
}
.resource-list li h3 a {
    color: var(--color-primary);
    text-decoration: none;
}
.resource-list li h3 a:hover {
    text-decoration: underline;
}
.resource-list li p {
    font-family: var(--font-family-body);
    color: var(--color-text-muted);
    font-size: 0.95em;
    margin-bottom: 0;
}


/* --- Contact Section --- */
.contact-section {
    background-color: var(--color-background-dark);
}

/* -------------------------------------------------------------------
   8. Page Specific Styles
------------------------------------------------------------------- */

/* --- Success Page (success.html) --- */
.success-page-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - var(--header-height) - 78px); /* Adjust 78px for footer height approx */
    text-align: center;
    padding: 40px 20px;
}
.success-page-content {
    background-color: var(--color-background-light);
    padding: 40px 50px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-heavy);
    max-width: 600px;
}
.success-page-content h1 {
    color: var(--color-primary);
    font-size: 2.5em;
    margin-bottom: 20px;
}
.success-page-content p {
    font-size: 1.1em;
    margin-bottom: 30px;
}
.success-page-content .button {
    min-width: 200px;
}


/* --- Privacy & Terms Pages (privacy.html, terms.html) --- */
.legal-page-content,
.about-page-content, /* Also for about.html content if it's a separate page */
.contacts-page-content { /* Also for contacts.html */
    padding-top: calc(var(--header-height) + 40px); /* Header height + some space */
    padding-bottom: 60px;
}
.legal-page-content .container h1,
.about-page-content .container h1,
.contacts-page-content .container h1 {
    margin-bottom: 30px;
    text-align: center;
}
.legal-page-content .container h2,
.about-page-content .container h2,
.contacts-page-content .container h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.8em;
    color: var(--color-primary);
}
.legal-page-content .container p,
.legal-page-content .container ul,
.legal-page-content .container ol,
.about-page-content .container p,
.about-page-content .container ul,
.about-page-content .container ol,
.contacts-page-content .container p,
.contacts-page-content .container ul,
.contacts-page-content .container ol {
    color: var(--color-text-body);
    margin-bottom: 1em;
    max-width: 800px; /* Improve readability for long text */
    /* margin-left: auto;
    margin-right: auto; */
}
.legal-page-content .container ul,
.legal-page-content .container ol,
.about-page-content .container ul,
.about-page-content .container ol,
.contacts-page-content .container ul,
.contacts-page-content .container ol {
    padding-left: 20px;
}

/* -------------------------------------------------------------------
   9. Animations & Transitions
------------------------------------------------------------------- */

/* --- Scroll Animations (basic setup for JS to target) --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--transition-timing), transform 0.6s var(--transition-timing);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Barba.js Transitions (example) */
.barba-leave-active,
.barba-enter-active {
  transition: opacity .5s ease-in-out;
}
.barba-leave-to,
.barba-enter-from {
  opacity: 0;
}

/* Cookie Popup (from HTML, if styles needed here) */
#cookie-popup {
    /* Styles are inline in HTML as per prompt, but could be moved here */
}


/* -------------------------------------------------------------------
   10. Responsive Design (Media Queries)
------------------------------------------------------------------- */
@media (max-width: 992px) {
    h1 { font-size: 2.5em; }
    .hero-content h1 { font-size: 3em; }
    h2, .section-title { font-size: 2em; }
    h3 { font-size: 1.4em; }

    .card-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

@media (max-width: 768px) {
    html { font-size: 15px; }
    .hero-content h1 { font-size: 2.5em; }
    .hero-content p { font-size: 1.1em; }
    .section-title { font-size: 1.8em; }

    .main-nav {
        position: relative; /* For burger alignment */
    }

    .main-nav ul {
        display: none; /* Hidden by default */
        flex-direction: column;
        position: absolute;
        top: calc(var(--header-height) - 1px); /* Position below header */
        left: 0;
        width: 100%;
        background-color: var(--color-background-light);
        box-shadow: var(--box-shadow-medium);
        padding: 20px 0;
        border-top: 1px solid #eee;
    }

    .main-nav.nav-open ul { /* JS toggles .nav-open on .main-nav */
        display: flex;
        width: 200px;
        margin-left: -150px;
    }

    .main-nav li {
        width: 100%;
        text-align: center;
    }

    .main-nav a {
        display: block;
        padding: 12px 20px;
        width: 100%;
    }
    .main-nav a::after {
        display: none; /* Remove underline effect on mobile */
    }

    .nav-toggle {
        display: block; /* Show burger */
    }

    .about-content,
    .behind-the-scenes-content {
        flex-direction: column;
        text-align: center;
    }
    .about-image,
    .behind-the-scenes-image {
        margin-bottom: 20px;
        order: -1; /* Image first */
    }
    .about-text,
    .behind-the-scenes-text {
        text-align: left; /* Keep text left-aligned for readability */
    }
    .flex-item.is-two-thirds,
    .flex-item.is-one-third {
        flex-basis: 100%;
    }

    .contact-form {
        padding: 20px;
    }

    .footer-content {
        gap: 15px;
    }
    .site-footer .footer-nav {
        gap: 10px 20px;
    }
}

@media (max-width: 480px) {
    html { font-size: 14px; }
    .hero-section { min-height: 70vh; }
    .hero-content h1 { font-size: 2em; }
    .hero-content p { font-size: 1em; }

    .container {
        width: 95%;
    }
    .section-padding {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .card-grid {
        grid-template-columns: 1fr; /* Single column for cards */
        gap: 20px;
    }
    .card {
        width: 100%; /* Make cards full width in single column */
    }

    .button,
    button,
    input[type="submit"],
    input[type="button"] {
        padding: 10px 20px;
        font-size: 0.95em;
    }
    .button.hero-cta {
        font-size: 1em;
        padding: 12px 25px;
    }

    .success-page-content {
        padding: 30px 20px;
    }
    .success-page-content h1 {
        font-size: 2em;
    }
}