@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

:root {
    --color-bg: #f2f4f8;
    --color-primary: #1f2c38;
    --color-secondary: #1abc9c;
    --color-text: #333;
    --color-white: #fff;
    --color-button: #11706a;
    --color-button-hover: #0d5a56;
}

body {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    margin: 0;
    line-height: 1.7;
}

header {
    background: none;
    padding: 0;
}

header h1 {
    text-align: center;
    margin: 2rem 0 1.5rem 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.hero {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 5rem 1rem 4rem 1rem;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-cta {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(26, 188, 156, 0.15);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--color-white);
    border-radius: 18px;
    padding: 2.5rem 2rem;
    box-shadow: 0 6px 32px rgba(31, 44, 56, 0.07);
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
}

.service-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 40px rgba(26, 188, 156, 0.13);
}

.service-card h3 {
    margin-top: 0;
    color: var(--color-primary);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    margin: 0;
    font-size: 1.05rem;
    color: #555;
}

h2 {
    color: var(--color-primary);
    font-size: 2.1rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}

main {
    max-width: 1024px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

section {
    margin-bottom: 4rem;
}

a.button {
    display: inline-block;
    background: var(--color-button);
    color: var(--color-white);
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 999px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(26, 188, 156, 0.08);
    transition: background 0.3s, box-shadow 0.2s;
}

a.button:hover, .hero-cta:hover {
    background: #16a085;
    box-shadow: 0 4px 16px rgba(26, 188, 156, 0.18);
}

footer {
    margin: 4rem 0 0 0;
    color: #aaa;
    font-size: 1rem;
    text-align: center;
    letter-spacing: 0.5px;
}

.contact-page {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.contact-page form {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(31, 44, 56, 0.10);
    max-width: 800px;
    margin: 2rem auto;
    border: none;
}

label {
    display: block;
    margin: 1.5rem 0 0.5rem 0.2rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.2px;
}

input,
textarea {
    width: 100%;
    padding: 0.7rem 0.5rem 0.7rem 0.5rem;
    border: none;
    border-bottom: 2px solid #e0e4ea;
    border-radius: 0;
    background: #f8fafc;
    font-family: inherit;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    transition: border-color 0.2s, background 0.2s;
    box-shadow: none;
    resize: vertical;
}

input:focus,
textarea:focus {
    outline: none;
    border-bottom: 2.5px solid var(--color-secondary);
    background: #f2f4f8;
}

button {
    margin-top: 2rem;
    background: var(--color-button);
    color: var(--color-white);
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(26, 188, 156, 0.10);
    transition: background 0.3s, box-shadow 0.2s;
}

button:hover {
    background: var(--color-button-hover);
    box-shadow: 0 4px 16px rgba(26, 188, 156, 0.18);
}

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

a:hover {
    text-decoration: underline;
}

/* Enhanced Presentation Section */
.presentation-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4f8 100%);
    border-radius: 18px;
    padding: 3.5rem 3rem;
    border-left: 5px solid var(--color-button);
    margin: 3rem 0;
    box-shadow: 0 8px 32px rgba(31, 44, 56, 0.08);
    position: relative;
    overflow: hidden;
}

.presentation-section::before {
    content: "⚖️";
    position: absolute;
    top: 0;
    right: 2rem;
    font-size: 16rem;
    opacity: 0.1;
    transform: rotate(15deg);
}

.presentation-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    text-align: center;
    letter-spacing: 0.8px;
    position: relative;
}

.presentation-section h2::after {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-button);
    border-radius: 2px;
}

.presentation-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #444;
    font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .presentation-section {
        padding: 2.5rem 2rem;
        margin: 2rem 0;
    }
    
    .presentation-section h2 {
        font-size: 2.2rem;
    }
    
    .presentation-section p {
        font-size: 1.1rem;
        text-align: left;
    }
    
    .presentation-section::before {
        font-size: 2rem;
        top: 1.5rem;
        right: 1.5rem;
    }
}

footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 2rem 1.5rem;
    text-align: center;
    margin-top: auto;
    position: static;
    bottom: unset;
}

footer a { 
    color: var(--color-white);
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    margin-bottom: 1rem;
}

.contact-info p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.contact-info strong {
    font-size: 1.1rem;
    opacity: 1;
}

.hero-content .button {
    margin: 0 0.5rem 0.5rem 0;
    display: inline-block;
}

.hero-content .whatsapp-cta {
    background: #25d366 !important;
    color: #fff !important;
    border: none;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.10);
    transition: background 0.3s, box-shadow 0.2s;
    padding: 0.8rem 0.9rem;
}

.hero-content .whatsapp-cta:hover {
    background: #1ebe5d !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.18);
    text-decoration: none;
}

.hero-content .whatsapp-cta img {
    vertical-align: middle;
    filter: brightness(0) invert(1);
    height: 1.7em;
    width: 1.7em;
}