* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --graceGloryLp-primary: #2563EB;
    --graceGloryLp-secondary: #10B981;
    --graceGloryLp-accent: #F59E0B;
    --graceGloryLp-action: #EF4444;
    --graceGloryLp-dark: #1F2937;
    --graceGloryLp-medium: #6B7280;
    --graceGloryLp-light: #F9FAFB;
    --graceGloryLp-white: #FFFFFF;
    --graceGloryLp-shadow: 0 10px 30px rgba(0,0,0,0.1);
    --graceGloryLp-border-radius: 12px;
    --graceGloryLp-transition: all 0.3s ease;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--graceGloryLp-dark);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow-x: hidden;
}

.graceGloryLp-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Cookie Modal Styles */
.graceGloryLp-cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.graceGloryLp-cookie-overlay.show {
    opacity: 1;
    visibility: visible;
}

.graceGloryLp-cookie-modal {
    background: var(--graceGloryLp-white);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s ease-in-out;
    position: relative;
}

.graceGloryLp-cookie-overlay.show .graceGloryLp-cookie-modal {
    transform: scale(1) translateY(0);
}

.graceGloryLp-cookie-header {
    text-align: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #E5E7EB;
}

.graceGloryLp-cookie-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: graceGloryLp-bounce 2s infinite;
}

.graceGloryLp-cookie-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--graceGloryLp-dark);
    margin: 0;
}

.graceGloryLp-cookie-content {
    padding: 1.5rem 2rem;
}

.graceGloryLp-cookie-description {
    color: var(--graceGloryLp-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.graceGloryLp-cookie-details {
    margin-bottom: 1rem;
}

.graceGloryLp-cookie-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--graceGloryLp-dark);
    font-size: 0.9rem;
}

.graceGloryLp-cookie-check {
    background: var(--graceGloryLp-secondary);
    color: var(--graceGloryLp-white);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.graceGloryLp-cookie-actions {
    padding: 1rem 2rem 2rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.graceGloryLp-cookie-accept,
.graceGloryLp-cookie-decline {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 120px;
}

.graceGloryLp-cookie-accept {
    background: linear-gradient(135deg, var(--graceGloryLp-primary), #1D4ED8);
    color: var(--graceGloryLp-white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.graceGloryLp-cookie-decline {
    background: transparent;
    color: var(--graceGloryLp-medium);
    border: 2px solid #E5E7EB;
}

.graceGloryLp-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.graceGloryLp-cookie-decline:hover {
    background: #F3F4F6;
    border-color: var(--graceGloryLp-medium);
    color: var(--graceGloryLp-dark);
}

/* Header Styles */
.graceGloryLp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: var(--graceGloryLp-transition);
}

.graceGloryLp-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1920px;
    margin: 0 auto;
}

.graceGloryLp-logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.company-logo {
    width: 180px;
    height: 60px;
    background-image: url('img/company-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    flex-shrink: 0;
}

.graceGloryLp-company-name {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.graceGloryLp-company-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--graceGloryLp-dark);
    margin: 0;
    line-height: 1.2;
}

.graceGloryLp-company-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--graceGloryLp-medium);
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.graceGloryLp-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.graceGloryLp-nav-link {
    text-decoration: none;
    color: var(--graceGloryLp-dark);
    font-weight: 500;
    transition: var(--graceGloryLp-transition);
    position: relative;
}

.graceGloryLp-nav-link:hover,
.graceGloryLp-nav-link.graceGloryLp-active {
    color: var(--graceGloryLp-primary);
}

.graceGloryLp-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--graceGloryLp-primary);
    transition: var(--graceGloryLp-transition);
}

.graceGloryLp-nav-link:hover::after,
.graceGloryLp-nav-link.graceGloryLp-active::after {
    width: 100%;
}

.graceGloryLp-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.graceGloryLp-mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--graceGloryLp-dark);
    transition: var(--graceGloryLp-transition);
}

/* Hero Section Styles */
.graceGloryLp-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.graceGloryLp-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.graceGloryLp-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.graceGloryLp-hero-content {
    text-align: center;
    color: var(--graceGloryLp-white);
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.graceGloryLp-hero-title {
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: graceGloryLp-fadeInUp 1s ease-out;
}

.graceGloryLp-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: graceGloryLp-fadeInUp 1s ease-out 0.2s both;
}

.graceGloryLp-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: graceGloryLp-fadeInUp 1s ease-out 0.4s both;
}

/* Button Styles */
.graceGloryLp-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--graceGloryLp-border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--graceGloryLp-transition);
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
}

.graceGloryLp-btn-primary {
    background: var(--graceGloryLp-primary);
    color: var(--graceGloryLp-white);
}

.graceGloryLp-btn-secondary {
    background: transparent;
    color: var(--graceGloryLp-white);
    border: 2px solid var(--graceGloryLp-white);
}

.graceGloryLp-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--graceGloryLp-shadow);
}

.graceGloryLp-btn-primary:hover {
    background: #1D4ED8;
}

.graceGloryLp-btn-secondary:hover {
    background: var(--graceGloryLp-white);
    color: var(--graceGloryLp-dark);
}

/* Section Styles */
.graceGloryLp-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.graceGloryLp-section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--graceGloryLp-dark);
    margin-bottom: 1rem;
}

.graceGloryLp-section-subtitle {
    font-size: 1.125rem;
    color: var(--graceGloryLp-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section Styles */
.graceGloryLp-contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--graceGloryLp-white);
}

.graceGloryLp-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.graceGloryLp-contact .graceGloryLp-section-title {
    color: var(--graceGloryLp-white);
}

.graceGloryLp-contact-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.graceGloryLp-contact-details {
    margin-bottom: 2rem;
}

.graceGloryLp-contact-item {
    margin-bottom: 1rem;
}

.graceGloryLp-contact-label {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.graceGloryLp-contact-value {
    opacity: 0.9;
}

.graceGloryLp-contact-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--graceGloryLp-border-radius);
    box-shadow: var(--graceGloryLp-shadow);
}

/* Footer Styles */
.graceGloryLp-footer {
    background: var(--graceGloryLp-dark);
    color: var(--graceGloryLp-white);
    padding: 3rem 0 1rem;
}

.graceGloryLp-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.graceGloryLp-footer-description {
    margin-top: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

.graceGloryLp-footer-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

.graceGloryLp-footer-links {
    list-style: none;
}

.graceGloryLp-footer-links li {
    margin-bottom: 0.5rem;
}

.graceGloryLp-footer-links a {
    color: var(--graceGloryLp-white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--graceGloryLp-transition);
}

.graceGloryLp-footer-links a:hover {
    opacity: 1;
    color: var(--graceGloryLp-primary);
}

.graceGloryLp-footer-contact p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.graceGloryLp-footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    opacity: 0.8;
}

/* Animations */
@keyframes graceGloryLp-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes graceGloryLp-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .graceGloryLp-nav-menu {
        display: none;
    }
    
    .graceGloryLp-mobile-menu-toggle {
        display: flex;
    }
    
    .graceGloryLp-logo-section {
        gap: 0.75rem;
    }
    
    .company-logo {
        width: 140px;
        height: 50px;
    }
    
    .graceGloryLp-company-title {
        font-size: 1.25rem;
    }
    
    .graceGloryLp-company-subtitle {
        font-size: 0.75rem;
    }
    
    .graceGloryLp-hero-title {
        font-size: 2rem;
    }
    
    .graceGloryLp-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .graceGloryLp-contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .graceGloryLp-footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .graceGloryLp-cookie-modal {
        width: 95%;
        max-width: 400px;
    }
    
    .graceGloryLp-cookie-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .graceGloryLp-cookie-content {
        padding: 1rem 1.5rem;
    }
    
    .graceGloryLp-cookie-actions {
        padding: 1rem 1.5rem 1.5rem;
        flex-direction: column;
    }
    
    .graceGloryLp-cookie-accept,
    .graceGloryLp-cookie-decline {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .graceGloryLp-container {
        padding: 0 1rem;
    }
    
    .graceGloryLp-logo-section {
        gap: 0.5rem;
    }
    
    .company-logo {
        width: 120px;
        height: 40px;
    }
    
    .graceGloryLp-company-title {
        font-size: 1.125rem;
    }
    
    .graceGloryLp-company-subtitle {
        font-size: 0.7rem;
    }
    
    .graceGloryLp-hero-title {
        font-size: 1.75rem;
    }
    
    .graceGloryLp-section-title {
        font-size: 1.875rem;
    }
}
